def self.primary_key_name : Symbol | Nil
#
class SlackAccessToken
- SlackAccessToken
- BaseModel
- Avram::Model
- Reference
- Object
Included Modules
- Avram::PrimaryKeyMethods
- DB::Mappable
- JSON::Serializable
- LuckyCache::Cachable
Defined in:
models/slack_access_token.crConstant Summary
-
ASSOCIATIONS =
[{type: SlackTeam, assoc_name: slack_team, foreign_key: :slack_team_id, relationship_type: :belongs_to, through: nil}] of Nil
-
COLUMNS =
[{name: id, type: Int64, nilable: false, autogenerated: true, value: nil, serialized: false}, {name: created_at, type: Time, nilable: false, autogenerated: true, value: nil, serialized: false}, {name: updated_at, type: Time, nilable: false, autogenerated: true, value: nil, serialized: false}, {name: slack_team_id, type: SlackTeam::PrimaryKeyType, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: token, type: String, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: expires_at, type: Time, nilable: true, autogenerated: false, value: nil, serialized: false}, {name: json_body, type: Slack::AuthResponse, nilable: false, autogenerated: false, value: nil, serialized: true}] of Nil
-
PRIMARY_KEY_NAME =
:id
-
PRIMARY_KEY_TYPE =
Int64
Constructors
- .new(id : Int64, created_at : Time, updated_at : Time, slack_team_id : Int64, token : String, expires_at : Time | Nil, json_body : Slack::AuthResponse)
- .new(pull : JSON::PullParser)
- .new(__temp_119 : DB::ResultSet)
Class Method Summary
- .adapter
- .column_names : Array(Symbol)
- .columns : Array(NamedTuple(name: Symbol, nilable: Bool, type: String))
- .ensure_correct_column_mappings!
- .from_rs(__temp_119 : DB::ResultSet)
- .primary_key_name : Symbol | Nil
- .schema_enforcer_validations
- .table_name : String
Instance Method Summary
-
#base_query_class : ::SlackAccessToken::BaseQuery.class
This makes it easy for plugins and extensions to use the base SaveOperation
- #created_at : Time
- #created_at=(_created_at : Time::Lucky::ColumnType)
- #delete_operation_class : ::SlackAccessToken::DeleteOperation.class
- #expires_at : Time | Nil
- #expires_at=(_expires_at : Time::Lucky::ColumnType | Nil)
- #id : Int64
- #id=(_id : Int64::Lucky::ColumnType)
- #json_body : Slack::AuthResponse
- #json_body=(_json_body : Slack::AuthResponse)
- #save_operation_class : ::SlackAccessToken::SaveOperation.class
- #slack_team : SlackTeam
- #slack_team! : SlackTeam
- #slack_team_count : Int64
- #slack_team_id : SlackTeam::PrimaryKeyType
- #slack_team_id=(_slack_team_id : SlackTeam::PrimaryKeyType::Lucky::ColumnType)
- #slack_team_query
- #token : String
- #token=(_token : String::Lucky::ColumnType)
- #updated_at : Time
- #updated_at=(_updated_at : Time::Lucky::ColumnType)
Class methods inherited from class BaseModel
database : Avram::Database.class
database
Constructor Detail
def self.new(id : Int64, created_at : Time, updated_at : Time, slack_team_id : Int64, token : String, expires_at : Time | Nil, json_body : Slack::AuthResponse)
#
Class Method Detail
Instance Method Detail
This makes it easy for plugins and extensions to use the base SaveOperation