1
0
Fork 0
beathaven/db/migrate/20120917185417_remove_artis...

20 lines
547 B
Ruby

class RemoveArtistBioAndImageFields < ActiveRecord::Migration
def up
remove_column :artists, :bio
remove_column :artists, :pic
remove_column :albums, :pic
add_column :artists, :image_id, :integer, default: nil
add_column :albums, :image_id, :integer, default: nil
end
def down
add_column :artists, :bio, :text, default: nil
add_column :artists, :pic, :string, default: nil
add_column :albums, :pic, :string, default: nil
remove_column :artists, :image_id
remove_column :albums, :image_id
end
end