chatwoot-develop/enterprise/app/models/captain/configuration.rb

9 lines
197 B
Ruby

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