class Deck

Included Modules

Defined in:

models/deck.cr

Constant Summary

ASSOCIATIONS = [{type: LeitnerBox, assoc_name: leitner_box, foreign_key: :leitner_box_id, relationship_type: :belongs_to, through: nil}, {type: Card, assoc_name: cards, foreign_key: :deck_id, relationship_type: :has_many, through: nil}] 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: leitner_box_id, type: LeitnerBox::PrimaryKeyType, nilable: false, autogenerated: false, value: nil, serialized: false, allow_blank: false}, {name: period_unit, type: Int32, nilable: false, autogenerated: false, value: nil, serialized: false, allow_blank: false}, {name: period_type, type: Deck::Period, nilable: false, autogenerated: false, value: nil, serialized: false, allow_blank: false}, {name: level, type: Int32, nilable: false, autogenerated: false, value: nil, serialized: false, allow_blank: false}] of Nil
PRIMARY_KEY_NAME = :id
PRIMARY_KEY_TYPE = Int64

Constructors

Class Method Summary

Instance Method Summary

Class methods inherited from class BaseModel

database : Avram::Database.class database

Constructor Detail

def self.new(id : Int64, created_at : Time, updated_at : Time, leitner_box_id : Int64, period_unit : Int32, period_type : Int32 | Int64, level : Int32) #

def self.new(__temp_147 : DB::ResultSet) #

Class Method Detail

def self.column_names : Array(Symbol) #

def self.columns : Array(NamedTuple(name: Symbol, nilable: Bool, type: String)) #

def self.ensure_correct_column_mappings! #

def self.from_rs(__temp_147 : DB::ResultSet) #

def self.primary_key_name : Symbol | Nil #

def self.schema_enforcer_validations #

def self.table_name : String #

Instance Method Detail

def _preloaded_cards=(vals : Array(Card)) : Array(Card) #

def base_query_class : ::Deck::BaseQuery.class #

This makes it easy for plugins and extensions to use the base SaveOperation


def cards : Array(Card) #

def cards! : Array(Card) #

def cards_count : Int64 #

def cards_preloaded? : Bool #

def cards_query #

def cards_to_study #

[View source]
def created_at : Time #

def created_at=(_created_at : Time::Lucky::ColumnType) #

def delete_operation_class : ::Deck::DeleteOperation.class #

def id : Int64 #

def id=(_id : Int64::Lucky::ColumnType) #

def leitner_box : LeitnerBox #

def leitner_box! : LeitnerBox #

def leitner_box_count : Int64 #

def leitner_box_id : LeitnerBox::PrimaryKeyType #

def leitner_box_id=(_leitner_box_id : LeitnerBox::PrimaryKeyType::Lucky::ColumnType) #

def leitner_box_preloaded? : Bool #

Returns true if the association has been preloaded


def leitner_box_query #

def level : Int32 #

def level=(_level : Int32::Lucky::ColumnType) #

def period_type : Deck::Period #

def period_type=(_period_type : Deck::Period::Lucky::ColumnType) #

def period_unit : Int32 #

def period_unit=(_period_unit : Int32::Lucky::ColumnType) #

def save_operation_class : ::Deck::SaveOperation.class #

def updated_at : Time #

def updated_at=(_updated_at : Time::Lucky::ColumnType) #