def self.primary_key_name : Symbol | Nil
#
class Category
- Category
- BaseModel
- Avram::Model
- Reference
- Object
Included Modules
- Avram::PrimaryKeyMethods
- DB::Mappable
Defined in:
models/category.crConstant Summary
-
ASSOCIATIONS =
[{type: GoodsCategory, assoc_name: goods_categories, foreign_key: :category_id, relationship_type: :has_many, through: nil}, {type: Good, assoc_name: goods, foreign_key: :category_id, relationship_type: :has_many, through: [:goods_categories, :good]}] of Nil
-
COLUMNS =
[{name: id, type: Int32, 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: path, type: String, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: name, type: String, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: description, type: String, nilable: false, autogenerated: false, value: nil, serialized: false}] of Nil
-
PRIMARY_KEY_NAME =
:id
-
PRIMARY_KEY_TYPE =
Int32
Constructors
- .new(id : Int32, created_at : Time, updated_at : Time, path : String, name : String, description : String)
- .new(__temp_111 : 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_111 : DB::ResultSet)
- .primary_key_name : Symbol | Nil
- .schema_enforcer_validations
- .table_name : String
Instance Method Summary
- #_preloaded_goods=(_preloaded_goods : Nil | Array(Good))
- #_preloaded_goods_categories=(_preloaded_goods_categories : Nil | Array(GoodsCategory))
-
#base_query_class : ::Category::BaseQuery.class
This makes it easy for plugins and extensions to use the base SaveOperation
- #child_path
- #created_at : Time
- #created_at=(_created_at : Time::Lucky::ColumnType)
- #delete_operation_class : ::Category::DeleteOperation.class
- #description : String
- #description=(_description : String::Lucky::ColumnType)
- #goods : Array(Good)
- #goods! : Array(Good)
- #goods_categories : Array(GoodsCategory)
- #goods_categories! : Array(GoodsCategory)
- #goods_categories_count : Int64
- #goods_categories_query
- #goods_count : Int64
- #goods_query
- #id : Int32
- #id=(_id : Int32::Lucky::ColumnType)
- #name : String
- #name=(_name : String::Lucky::ColumnType)
- #path : String
- #path=(_path : String::Lucky::ColumnType)
- #save_operation_class : ::Category::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 : Int32, created_at : Time, updated_at : Time, path : String, name : String, description : String)
#
Class Method Detail
Instance Method Detail
This makes it easy for plugins and extensions to use the base SaveOperation