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

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