beathaven/db/migrate/20120826171313_create_artists.rb
2012-08-27 03:53:30 +04:00

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