1
0
Fork 0
oldhaven/db/migrate/20110923113224_remove_dates...

12 lines
296 B
Ruby

class RemoveDatesFromAlbumFormat < ActiveRecord::Migration
def up
remove_column :album_formats, :created_at
remove_column :album_formats, :updated_at
end
def down
add_column :album_formats, :updated_at, :datetime
add_column :album_formats, :created_at, :datetime
end
end