trabajo-afectivo/db/migrate/20161112000001_organization_domain_based_assignment.rb

86 lines
1.9 KiB
Ruby
Raw Normal View History

class OrganizationDomainBasedAssignment < ActiveRecord::Migration
def up
# return if it's a new setup
return if !Setting.find_by(name: 'system_init_done')
add_column :organizations, :domain, :string, limit: 250, null: true, default: ''
add_column :organizations, :domain_assignment, :boolean, null: false, default: false
add_index :organizations, [:domain]
ObjectManager::Attribute.add(
force: true,
object: 'Organization',
name: 'domain_assignment',
display: 'Domain based assignment',
data_type: 'boolean',
data_option: {
null: true,
default: false,
note: 'Assign Users based on users domain.',
item_class: 'formGroup--halfSize',
options: {
true: 'yes',
false: 'no',
},
translate: true,
},
editable: false,
active: true,
screens: {
edit: {
Admin: {
null: false,
},
},
view: {
'-all-' => {
shown: true,
},
},
},
to_create: false,
to_migrate: false,
to_delete: false,
position: 1410,
updated_by_id: 1,
created_by_id: 1,
)
ObjectManager::Attribute.add(
force: true,
object: 'Organization',
name: 'domain',
display: 'Domain',
data_type: 'input',
data_option: {
type: 'text',
maxlength: 150,
null: true,
item_class: 'formGroup--halfSize',
},
editable: false,
active: true,
screens: {
edit: {
'-all-' => {
null: true,
},
},
view: {
'-all-' => {
shown: true,
},
},
},
to_create: false,
to_migrate: false,
to_delete: false,
position: 1420,
updated_by_id: 1,
created_by_id: 1,
)
Cache.clear
end
end