def self.primary_key_name : Symbol | Nil
#
class GoodsCategory
- GoodsCategory
- BaseModel
- Avram::Model
- Reference
- Object
Included Modules
- Avram::PrimaryKeyMethods
- DB::Mappable
Defined in:
models/goods_category.crConstant Summary
-
ASSOCIATIONS =
[{type: Good, assoc_name: good, foreign_key: :good_id, relationship_type: :belongs_to, through: nil}, {type: Category, assoc_name: category, foreign_key: :category_id, relationship_type: :belongs_to, through: nil}] 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: good_id, type: Good::PrimaryKeyType, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: category_id, type: Category::PrimaryKeyType, 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, good_id : Int32, category_id : Int32)
- .new(__temp_153 : 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_153 : DB::ResultSet)
- .primary_key_name : Symbol | Nil
- .schema_enforcer_validations
- .table_name : String
Instance Method Summary
-
#base_query_class : ::GoodsCategory::BaseQuery.class
This makes it easy for plugins and extensions to use the base SaveOperation
- #category : Category
- #category! : Category
- #category_count : Int64
- #category_id : Category::PrimaryKeyType
- #category_id=(_category_id : Category::PrimaryKeyType::Lucky::ColumnType)
- #category_query
- #created_at : Time
- #created_at=(_created_at : Time::Lucky::ColumnType)
- #delete_operation_class : ::GoodsCategory::DeleteOperation.class
- #good : Good
- #good! : Good
- #good_count : Int64
- #good_id : Good::PrimaryKeyType
- #good_id=(_good_id : Good::PrimaryKeyType::Lucky::ColumnType)
- #good_query
- #id : Int32
- #id=(_id : Int32::Lucky::ColumnType)
- #save_operation_class : ::GoodsCategory::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, good_id : Int32, category_id : Int32)
#
Class Method Detail
Instance Method Detail
This makes it easy for plugins and extensions to use the base SaveOperation