def self.primary_key_name : Symbol | Nil
#
class StoreOrder
- StoreOrder
- BaseModel
- Avram::Model
- Reference
- Object
Included Modules
- Avram::PrimaryKeyMethods
- DB::Mappable
Defined in:
models/store_order.crConstant Summary
-
ASSOCIATIONS =
[{type: Store, assoc_name: store, foreign_key: :store_id, relationship_type: :belongs_to, through: nil}, {type: User, assoc_name: user, foreign_key: :user_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: store_id, type: Store::PrimaryKeyType, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: user_id, type: User::PrimaryKeyType, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: planned_delivery_date, type: Time, nilable: true, autogenerated: false, value: nil, serialized: false}, {name: delivered_at, type: Time, nilable: true, autogenerated: false, value: nil, serialized: false}, {name: total_cost, type: Float64, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: total_weight, type: Float64, 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, store_id : Int32, user_id : Int32, planned_delivery_date : Time | Nil, delivered_at : Time | Nil, total_cost : PG::Numeric, total_weight : PG::Numeric)
- .new(__temp_219 : 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_219 : DB::ResultSet)
- .primary_key_name : Symbol | Nil
- .schema_enforcer_validations
- .table_name : String
Instance Method Summary
-
#base_query_class : ::StoreOrder::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 : ::StoreOrder::DeleteOperation.class
- #delivered_at : Time | Nil
- #delivered_at=(_delivered_at : Time::Lucky::ColumnType | Nil)
- #id : Int32
- #id=(_id : Int32::Lucky::ColumnType)
- #planned_delivery_date : Time | Nil
- #planned_delivery_date=(_planned_delivery_date : Time::Lucky::ColumnType | Nil)
- #save_operation_class : ::StoreOrder::SaveOperation.class
- #store : Store
- #store! : Store
- #store_count : Int64
- #store_id : Store::PrimaryKeyType
- #store_id=(_store_id : Store::PrimaryKeyType::Lucky::ColumnType)
- #store_query
- #total_cost : Float64
- #total_cost=(_total_cost : PG::Numeric)
- #total_weight : Float64
- #total_weight=(_total_weight : PG::Numeric)
- #updated_at : Time
- #updated_at=(_updated_at : Time::Lucky::ColumnType)
- #user : User
- #user! : User
- #user_count : Int64
- #user_id : User::PrimaryKeyType
- #user_id=(_user_id : User::PrimaryKeyType::Lucky::ColumnType)
- #user_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, store_id : Int32, user_id : Int32, planned_delivery_date : Time | Nil, delivered_at : Time | Nil, total_cost : PG::Numeric, total_weight : PG::Numeric)
#
Class Method Detail
Instance Method Detail
This makes it easy for plugins and extensions to use the base SaveOperation