mirror of
https://github.com/redmine/redmine.git
synced 2025-10-30 18:06:30 +01:00
11 lines
189 B
Ruby
11 lines
189 B
Ruby
|
|
class DropPermissions < ActiveRecord::Migration
|
||
|
|
def self.up
|
||
|
|
drop_table :permissions
|
||
|
|
drop_table :permissions_roles
|
||
|
|
end
|
||
|
|
|
||
|
|
def self.down
|
||
|
|
raise IrreversibleMigration
|
||
|
|
end
|
||
|
|
end
|