2a34255e0b
Co-authored-by: Subin <subinthattaparambil@gmail.com> Co-authored-by: Manoj <manojmj92@gmail.com> Co-authored-by: Nithin <webofnithin@gmail.com>
5 lines
172 B
Ruby
5 lines
172 B
Ruby
class TelegramBot < ApplicationRecord
|
|
belongs_to :account
|
|
has_one :inbox, as: :channel, dependent: :destroy
|
|
validates_uniqueness_of :auth_key, scope: :account_id
|
|
end
|