chatwoot-develop/enterprise/app/models/captain/configuration.rb
2026-01-12 22:21:12 -03:00

11 lines
219 B
Ruby

module Captain
class Configuration < ApplicationRecord
self.table_name = 'captain_configurations'
belongs_to :account
validates :account_id, presence: true
validates :title, presence: true
end
end