You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

064_drop_permissions.rb 208B

12345678910
  1. class DropPermissions < ActiveRecord::Migration[4.2]
  2. def self.up
  3. drop_table :permissions
  4. drop_table :permissions_roles
  5. end
  6. def self.down
  7. raise ActiveRecord::IrreversibleMigration
  8. end
  9. end