diaspora/db/migrate/20140422135040_drop_table_post_reports.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

9 lines
165 B
Ruby

class DropTablePostReports < ActiveRecord::Migration
def up
drop_table :post_reports
end
def down
raise ActiveRecord::IrreversibleMigration
end
end