1
0
Fork 0
beathaven/db/migrate/20120826171313_create_artis...

14 lines
239 B
Ruby

class CreateArtists < ActiveRecord::Migration
def change
create_table :artists do |t|
t.string :rovi_id
t.string :name
t.boolean :is_group
t.text :bio
t.string :pic
t.timestamps
end
end
end