def self.primary_key_name : Symbol | Nil
#
class Card
Included Modules
- Avram::PrimaryKeyMethods
- DB::Mappable
- LuckyCache::Cachable
Defined in:
models/card.crConstant Summary
-
ASSOCIATIONS =
[{type: Deck, assoc_name: deck, foreign_key: :deck_id, relationship_type: :belongs_to, 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: deck_id, type: Deck::PrimaryKeyType, nilable: false, autogenerated: false, value: nil, serialized: false, allow_blank: false}, {name: card_type, type: Card::Type, nilable: false, autogenerated: false, value: nil, serialized: false, allow_blank: false}, {name: content, type: Card::Content, nilable: false, autogenerated: false, value: nil, serialized: true, allow_blank: false}, {name: last_review_at, type: Time, nilable: true, 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, deck_id : Int64, card_type : Int32 | Int64, content : Card::Content, last_review_at : Time | Nil)
- .new(__temp_131 : 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_131 : DB::ResultSet)
- .primary_key_name : Symbol | Nil
- .schema_enforcer_validations
- .table_name : String
Instance Method Summary
-
#base_query_class : ::Card::BaseQuery.class
This makes it easy for plugins and extensions to use the base SaveOperation
- #card_type : Card::Type
- #card_type=(_card_type : Card::Type::Lucky::ColumnType)
- #content : Card::Content
- #content=(_content : Card::Content)
- #created_at : Time
- #created_at=(_created_at : Time::Lucky::ColumnType)
- #deck : Deck
- #deck! : Deck
- #deck_count : Int64
- #deck_id : Deck::PrimaryKeyType
- #deck_id=(_deck_id : Deck::PrimaryKeyType::Lucky::ColumnType)
-
#deck_preloaded? : Bool
Returns
true
if the association has been preloaded - #deck_query
- #delete_operation_class : ::Card::DeleteOperation.class
- #id : Int64
- #id=(_id : Int64::Lucky::ColumnType)
- #last_review_at : Time | Nil
- #last_review_at=(_last_review_at : Time::Lucky::ColumnType | Nil)
- #save_operation_class : ::Card::SaveOperation.class
- #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, deck_id : Int64, card_type : Int32 | Int64, content : Card::Content, last_review_at : Time | Nil)
#
Class Method Detail
Instance Method Detail
This makes it easy for plugins and extensions to use the base SaveOperation