class GoodsCategory

Included Modules

Defined in:

models/goods_category.cr

Constant 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

Class Method Summary

Instance Method Summary

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) #

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

def self.primary_key_name : Symbol | Nil #

def self.schema_enforcer_validations #

def self.table_name : String #

Instance Method Detail

def base_query_class : ::GoodsCategory::BaseQuery.class #

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


def category : Category #

def category! : Category #

def category_count : Int64 #

def category_id : Category::PrimaryKeyType #

def category_id=(_category_id : Category::PrimaryKeyType::Lucky::ColumnType) #

def category_query #

def created_at : Time #

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

def delete_operation_class : ::GoodsCategory::DeleteOperation.class #

def good : Good #

def good! : Good #

def good_count : Int64 #

def good_id : Good::PrimaryKeyType #

def good_id=(_good_id : Good::PrimaryKeyType::Lucky::ColumnType) #

def good_query #

def id : Int32 #

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

def save_operation_class : ::GoodsCategory::SaveOperation.class #

def updated_at : Time #

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