|
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
|