diaspora/db/migrate/20140422134050_rename_post_columns_to_item.rb
2017-08-12 15:39:26 +02:00

11 lines
294 B
Ruby

class RenamePostColumnsToItem < ActiveRecord::Migration[4.2]
def up
rename_column :reports, :post_id, :item_id
rename_column :reports, :post_type, :item_type
end
def down
rename_column :reports, :item_id, :post_id
rename_column :reports, :item_type, :post_type
end
end