beathaven/db/migrate/20120917185226_create_artist_infos.rb
2012-09-18 00:03:57 +04:00

12 lines
205 B
Ruby

class CreateArtistInfos < ActiveRecord::Migration
def change
create_table :artist_infos do |t|
t.integer :artist_id
t.string :lang
t.text :bio
t.timestamps
end
end
end