2021-01-14 15:05:22 +00:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: platform_apps
|
|
|
|
#
|
|
|
|
# id :bigint not null, primary key
|
|
|
|
# name :string not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
|
|
|
class PlatformApp < ApplicationRecord
|
|
|
|
include AccessTokenable
|
|
|
|
|
|
|
|
validates :name, presence: true
|
|
|
|
|
2021-11-18 05:02:29 +00:00
|
|
|
has_many :platform_app_permissibles, dependent: :destroy_async
|
2021-01-14 15:05:22 +00:00
|
|
|
end
|