blob: 326e35f508b516dffd72ad4baf53003d1df8d061 (
plain)
1
2
3
4
5
6
7
8
9
10
|
class DropPermissions < ActiveRecord::Migration[4.2]
def self.up
drop_table :permissions
drop_table :permissions_roles
end
def self.down
raise ActiveRecord::IrreversibleMigration
end
end
|