def self.primary_key_name : Symbol | Nil
#
class Store
- Store
- BaseModel
- Avram::Model
- Reference
- Object
Included Modules
- Avram::PrimaryKeyMethods
- DB::Mappable
Defined in:
models/store.crConstant Summary
-
ASSOCIATIONS =
[{type: OrderItem, assoc_name: order_items, foreign_key: :store_id, relationship_type: :has_many, through: nil}, {type: GoodsInStore, assoc_name: goods_in_stores, foreign_key: :store_id, relationship_type: :has_many, through: nil}, {type: Good, assoc_name: goods, foreign_key: :store_id, relationship_type: :has_many, through: [:goods_in_stores, :good]}, {type: StoreOrder, assoc_name: store_orders, foreign_key: :store_id, relationship_type: :has_many, through: nil}, {type: UserStoreDeliveryPoint, assoc_name: user_store_delivery_points, foreign_key: :store_id, relationship_type: :has_many, through: nil}, {type: Address, assoc_name: address, foreign_key: :address_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: address_id, type: Address::PrimaryKeyType, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: type, type: Int16, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: name, type: String, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: address_notes, 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, address_id : Int32, type : Int16, name : String, address_notes : String)
- .new(__temp_165 : 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_165 : 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_in_stores=(_preloaded_goods_in_stores : Nil | Array(GoodsInStore))
- #_preloaded_order_items=(_preloaded_order_items : Nil | Array(OrderItem))
- #_preloaded_store_orders=(_preloaded_store_orders : Nil | Array(StoreOrder))
- #_preloaded_user_store_delivery_points=(_preloaded_user_store_delivery_points : Nil | Array(UserStoreDeliveryPoint))
- #address : Address
- #address! : Address
- #address_count : Int64
- #address_id : Address::PrimaryKeyType
- #address_id=(_address_id : Address::PrimaryKeyType::Lucky::ColumnType)
- #address_notes : String
- #address_notes=(_address_notes : String::Lucky::ColumnType)
- #address_query
-
#base_query_class : ::Store::BaseQuery.class
This makes it easy for plugins and extensions to use the base SaveOperation
- #created_at : Time
- #created_at=(_created_at : Time::Lucky::ColumnType)
- #delete_operation_class : ::Store::DeleteOperation.class
- #goods : Array(Good)
- #goods! : Array(Good)
- #goods_count : Int64
- #goods_in_stores : Array(GoodsInStore)
- #goods_in_stores! : Array(GoodsInStore)
- #goods_in_stores_count : Int64
- #goods_in_stores_query
- #goods_query
- #id : Int32
- #id=(_id : Int32::Lucky::ColumnType)
- #name : String
- #name=(_name : String::Lucky::ColumnType)
- #order_items : Array(OrderItem)
- #order_items! : Array(OrderItem)
- #order_items_count : Int64
- #order_items_query
- #save_operation_class : ::Store::SaveOperation.class
- #store_orders : Array(StoreOrder)
- #store_orders! : Array(StoreOrder)
- #store_orders_count : Int64
- #store_orders_query
- #type : Int16
- #type=(_type : Int16::Lucky::ColumnType)
- #updated_at : Time
- #updated_at=(_updated_at : Time::Lucky::ColumnType)
- #user_store_delivery_points : Array(UserStoreDeliveryPoint)
- #user_store_delivery_points! : Array(UserStoreDeliveryPoint)
- #user_store_delivery_points_count : Int64
- #user_store_delivery_points_query
Class methods inherited from class BaseModel
database : Avram::Database.class
database
Constructor Detail
def self.new(id : Int32, created_at : Time, updated_at : Time, address_id : Int32, type : Int16, name : String, address_notes : String)
#
Class Method Detail
Instance Method Detail
def _preloaded_user_store_delivery_points=(_preloaded_user_store_delivery_points : Nil | Array(UserStoreDeliveryPoint))
#
This makes it easy for plugins and extensions to use the base SaveOperation