Files
grecia/db/migrate/20191030011956_drop_legislation_people_proposals.rb
Javi Martín f3df3f4fbc Remove people proposal model
This model isn't used anywhere, since it was created as part of a
feature which couldn't be completed.

This commit reverts commit 46e5d6a9.
2019-10-30 02:26:42 +01:00

10 lines
195 B
Ruby

class DropLegislationPeopleProposals < ActiveRecord::Migration[5.0]
def up
drop_table :legislation_people_proposals
end
def down
fail ActiveRecord::IrreversibleMigration
end
end