diaspora/db/migrate/20140422134050_rename_post_columns_to_item.rb
Lukas Matt 218845d5b4 Changed and renamed database columns
* changed user_id type to integer
* renamed post_id to item_id
* renamed post_type to item_type
2014-05-15 07:23:44 -04:00

11 lines
289 B
Ruby

class RenamePostColumnsToItem < ActiveRecord::Migration
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