mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 07:52:19 +08:00
1ba9b34b03
This has no functional impact yet, but it is the first step in adding more granular scopes to UserApiKeys
20 lines
467 B
Ruby
20 lines
467 B
Ruby
# frozen_string_literal: true
|
|
|
|
class UserApiKeyScope < ActiveRecord::Base
|
|
end
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: user_api_key_scopes
|
|
#
|
|
# id :bigint not null, primary key
|
|
# user_api_key_id :integer not null
|
|
# name :string not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_user_api_key_scopes_on_user_api_key_id (user_api_key_id)
|
|
#
|