def self.primary_key_name : Symbol | Nil
#
class Manufactory
- Manufactory
- BaseModel
- Avram::Model
- Reference
- Object
Included Modules
- Avram::PrimaryKeyMethods
- DB::Mappable
- LuckyCache::Cachable
Defined in:
models/manufactory.crConstant Summary
-
ASSOCIATIONS =
[{type: Company, assoc_name: company, foreign_key: :company_id, relationship_type: :belongs_to, through: nil}, {type: Workshop, assoc_name: workshops, foreign_key: :manufactory_id, relationship_type: :has_many, 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: name, type: String, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: company_id, type: Company::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, name : String, company_id : Int64)
- .new(__temp_98 : 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_98 : DB::ResultSet)
- .primary_key_name : Symbol | Nil
- .schema_enforcer_validations
- .table_name : String
Instance Method Summary
- #_preloaded_workshops=(vals : Array(Workshop)) : Array(Workshop)
-
#base_query_class : ::Manufactory::BaseQuery.class
This makes it easy for plugins and extensions to use the base SaveOperation
- #company : Company
- #company! : Company
- #company_count : Int64
- #company_id : Company::PrimaryKeyType
- #company_id=(_company_id : Company::PrimaryKeyType::Lucky::ColumnType)
- #company_query
- #created_at : Time
- #created_at=(_created_at : Time::Lucky::ColumnType)
- #delete_operation_class : ::Manufactory::DeleteOperation.class
- #id : Int64
- #id=(_id : Int64::Lucky::ColumnType)
- #name : String
- #name=(_name : String::Lucky::ColumnType)
- #save_operation_class : ::Manufactory::SaveOperation.class
- #updated_at : Time
- #updated_at=(_updated_at : Time::Lucky::ColumnType)
- #workshops : Array(Workshop)
- #workshops! : Array(Workshop)
- #workshops_count : Int64
- #workshops_query
Instance methods inherited from class BaseModel
creation_date
creation_date
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