mirror of
https://github.com/redmine/redmine.git
synced 2026-03-07 21:21:24 +01:00
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/work@2148 e93f8b46-1217-0410-a6f0-8f06a7374b81
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
|