OSDN Git Service

Merge branch 'v06' of git.sourceforge.jp:/gitroot/pettanr/pettanr into v06
[pettanr/pettanr.git] / db / migrate / 20111206095746_create_artists.rb
1 class CreateArtists < ActiveRecord::Migration
2   def change
3     create_table :artists do |t|
4       t.string :email\r
5       t.string :name\r
6       t.string :homepage_url\r
7       t.string :api_url\r
8       t.integer :default_license_id, :null => false, :default => 0\r
9       t.timestamp :crowled_at\r
10
11       t.timestamps
12     end
13   end
14 end