* changed user_id type to integer * renamed post_id to item_id * renamed post_type to item_type
9 lines
165 B
Ruby
9 lines
165 B
Ruby
class DropTablePostReports < ActiveRecord::Migration
|
|
def up
|
|
drop_table :post_reports
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|