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.
10 lines
195 B
Ruby
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
|