class Book

Included Modules

Defined in:

models/book.cr

Constant 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

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, title : String, year : Int16, author_id : Int64) #

def self.new(__temp_143 : 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_143 : DB::ResultSet) #

def self.primary_key_name : Symbol | Nil #

def self.schema_enforcer_validations #

def self.table_name : String #

Instance Method Detail

def author : Author #

def author! : Author #

def author_count : Int64 #

def author_id : Author::PrimaryKeyType #

def author_id=(_author_id : Author::PrimaryKeyType::Lucky::ColumnType) #

def author_query #

def base_query_class : ::Book::BaseQuery.class #

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


def created_at : Time #

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

def delete_operation_class : ::Book::DeleteOperation.class #

def id : Int64 #

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

def save_operation_class : ::Book::SaveOperation.class #

def title : String #

def title=(_title : String::Lucky::ColumnType) #

def updated_at : Time #

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

def year : Int16 #

def year=(_year : Int16::Lucky::ColumnType) #