def self.primary_key_name : Symbol | Nil
#
class LeitnerBox
- LeitnerBox
- BaseModel
- Avram::Model
- Reference
- Object
Included Modules
- Avram::PrimaryKeyMethods
- DB::Mappable
- LuckyCache::Cachable
Defined in:
models/leitner_box.crConstant Summary
-
ASSOCIATIONS =
[{type: User, assoc_name: user, foreign_key: :user_id, relationship_type: :belongs_to, through: nil}, {type: Deck, assoc_name: decks, foreign_key: :leitner_box_id, relationship_type: :has_many, through: nil}, {type: Card, assoc_name: cards, foreign_key: :leitner_box_id, relationship_type: :has_many, through: [:decks, :cards]}] of Nil
-
COLUMNS =
[{name: id, type: Int64, nilable: false, autogenerated: true, value: nil, serialized: false, allow_blank: false}, {name: created_at, type: Time, nilable: false, autogenerated: true, value: nil, serialized: false, allow_blank: false}, {name: updated_at, type: Time, nilable: false, autogenerated: true, value: nil, serialized: false, allow_blank: false}, {name: user_id, type: User::PrimaryKeyType, nilable: false, autogenerated: false, value: nil, serialized: false, allow_blank: false}, {name: name, type: String, nilable: false, autogenerated: false, value: nil, serialized: false, allow_blank: false}] of Nil
-
PRIMARY_KEY_NAME =
:id
-
PRIMARY_KEY_TYPE =
Int64
Constructors
- .new(id : Int64, created_at : Time, updated_at : Time, user_id : Int64, name : String)
- .new(__temp_163 : DB::ResultSet)
Class Method Summary
- .column_names : Array(Symbol)
- .columns : Array(NamedTuple(name: Symbol, nilable: Bool, type: String))
- .ensure_correct_column_mappings!
- .from_rs(__temp_163 : DB::ResultSet)
- .primary_key_name : Symbol | Nil
- .schema_enforcer_validations
- .table_name : String
Instance Method Summary
- #_preloaded_cards=(vals : Array(Card)) : Array(Card)
- #_preloaded_decks=(vals : Array(Deck)) : Array(Deck)
-
#base_query_class : ::LeitnerBox::BaseQuery.class
This makes it easy for plugins and extensions to use the base SaveOperation
- #cards : Array(Card)
- #cards! : Array(Card)
- #cards_count : Int64
- #cards_preloaded? : Bool
- #cards_query
- #created_at : Time
- #created_at=(_created_at : Time::Lucky::ColumnType)
- #decks : Array(Deck)
- #decks! : Array(Deck)
- #decks_count : Int64
- #decks_preloaded? : Bool
- #decks_query
- #delete_operation_class : ::LeitnerBox::DeleteOperation.class
- #id : Int64
- #id=(_id : Int64::Lucky::ColumnType)
- #name : String
- #name=(_name : String::Lucky::ColumnType)
- #save_operation_class : ::LeitnerBox::SaveOperation.class
- #updated_at : Time
- #updated_at=(_updated_at : Time::Lucky::ColumnType)
- #user : User
- #user! : User
- #user_count : Int64
- #user_id : User::PrimaryKeyType
- #user_id=(_user_id : User::PrimaryKeyType::Lucky::ColumnType)
-
#user_preloaded? : Bool
Returns
true
if the association has been preloaded - #user_query
Class methods inherited from class BaseModel
database : Avram::Database.class
database
Constructor Detail
Class Method Detail
Instance Method Detail
This makes it easy for plugins and extensions to use the base SaveOperation