def self.primary_key_name : Symbol | Nil
#
class Book
Included Modules
- Avram::PrimaryKeyMethods
- DB::Mappable
- LuckyCache::Cachable
Defined in:
models/book.crConstant Summary
-
ASSOCIATIONS =
[{type: Author, assoc_name: author, foreign_key: :author_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: title, type: String, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: year, type: Int16, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: author_id, type: Author::PrimaryKeyType, nilable: false, autogenerated: false, value: nil, serialized: false}] of Nil
-
PRIMARY_KEY_NAME =
:id
-
PRIMARY_KEY_TYPE =
Int64
Constructors
- .new(id : Int64, created_at : Time, updated_at : Time, title : String, year : Int16, author_id : Int64)
- .new(__temp_143 : 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_143 : DB::ResultSet)
- .primary_key_name : Symbol | Nil
- .schema_enforcer_validations
- .table_name : String
Instance Method Summary
- #author : Author
- #author! : Author
- #author_count : Int64
- #author_id : Author::PrimaryKeyType
- #author_id=(_author_id : Author::PrimaryKeyType::Lucky::ColumnType)
- #author_query
-
#base_query_class : ::Book::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 : ::Book::DeleteOperation.class
- #id : Int64
- #id=(_id : Int64::Lucky::ColumnType)
- #save_operation_class : ::Book::SaveOperation.class
- #title : String
- #title=(_title : String::Lucky::ColumnType)
- #updated_at : Time
- #updated_at=(_updated_at : Time::Lucky::ColumnType)
- #year : Int16
- #year=(_year : Int16::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, title : String, year : Int16, author_id : Int64)
#
Class Method Detail
Instance Method Detail
This makes it easy for plugins and extensions to use the base SaveOperation