mirror of
https://github.com/meineerde/redmine.git
synced 2026-03-13 04:33:08 +00:00
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/work@2148 e93f8b46-1217-0410-a6f0-8f06a7374b81
10 lines
181 B
Ruby
10 lines
181 B
Ruby
class AddRolesPermissions < ActiveRecord::Migration
|
|
def self.up
|
|
add_column :roles, :permissions, :text
|
|
end
|
|
|
|
def self.down
|
|
remove_column :roles, :permissions
|
|
end
|
|
end
|