mirror of
https://github.com/redmine/redmine.git
synced 2025-11-10 23:36:01 +01:00
6 lines
165 B
Ruby
6 lines
165 B
Ruby
|
|
class AddRolesAllRolesManaged < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
add_column :roles, :all_roles_managed, :boolean, :default => true, :null => false
|
||
|
|
end
|
||
|
|
end
|