mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
14 lines
427 B
Ruby
14 lines
427 B
Ruby
# Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
module HasObjectManagerAttributes
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
# Disable table inheritance to allow columns with the name 'type'.
|
|
self.inheritance_column = nil
|
|
|
|
validates_with Validations::ObjectManager::AttributeValidator, on: %i[create update]
|
|
|
|
after_initialize ObjectManager::Attribute::SetDefaults.new
|
|
end
|
|
end
|