Restructure omni services and add Chatwoot research snapshot
This commit is contained in:
21
research/chatwoot/app/models/access_token.rb
Normal file
21
research/chatwoot/app/models/access_token.rb
Normal file
@@ -0,0 +1,21 @@
|
||||
# == Schema Information
|
||||
#
|
||||
# Table name: access_tokens
|
||||
#
|
||||
# id :bigint not null, primary key
|
||||
# owner_type :string
|
||||
# token :string
|
||||
# created_at :datetime not null
|
||||
# updated_at :datetime not null
|
||||
# owner_id :bigint
|
||||
#
|
||||
# Indexes
|
||||
#
|
||||
# index_access_tokens_on_owner_type_and_owner_id (owner_type,owner_id)
|
||||
# index_access_tokens_on_token (token) UNIQUE
|
||||
#
|
||||
|
||||
class AccessToken < ApplicationRecord
|
||||
has_secure_token :token
|
||||
belongs_to :owner, polymorphic: true
|
||||
end
|
||||
Reference in New Issue
Block a user