Welcome to mirror list, hosted at ThFree Co, Russian Federation.

oauth_access_token.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c78c7f4aa0e3eb0c3cbd3213b348b2b0e9eb00b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# == Schema Information
#
# Table name: oauth_access_tokens
#
#  id                :integer          not null, primary key
#  resource_owner_id :integer
#  application_id    :integer
#  token             :string           not null
#  refresh_token     :string
#  expires_in        :integer
#  revoked_at        :datetime
#  created_at        :datetime         not null
#  scopes            :string
#

class OauthAccessToken < ActiveRecord::Base
  belongs_to :resource_owner, class_name: 'User'
  belongs_to :application, class_name: 'Doorkeeper::Application'
end