class StoreOrder

Included Modules

Defined in:

models/store_order.cr

Constant 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

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, store_id : Int32, user_id : Int32, planned_delivery_date : Time | Nil, delivered_at : Time | Nil, total_cost : PG::Numeric, total_weight : PG::Numeric) #

def self.new(__temp_219 : 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_219 : 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 : ::StoreOrder::BaseQuery.class #

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


def created_at : Time #

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

def delete_operation_class : ::StoreOrder::DeleteOperation.class #

def delivered_at : Time | Nil #

def delivered_at=(_delivered_at : Time::Lucky::ColumnType | Nil) #

def id : Int32 #

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

def planned_delivery_date : Time | Nil #

def planned_delivery_date=(_planned_delivery_date : Time::Lucky::ColumnType | Nil) #

def save_operation_class : ::StoreOrder::SaveOperation.class #

def store : Store #

def store! : Store #

def store_count : Int64 #

def store_id : Store::PrimaryKeyType #

def store_id=(_store_id : Store::PrimaryKeyType::Lucky::ColumnType) #

def store_query #

def total_cost : Float64 #

def total_cost=(_total_cost : PG::Numeric) #

def total_weight : Float64 #

def total_weight=(_total_weight : PG::Numeric) #

def updated_at : Time #

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

def user : User #

def user! : User #

def user_count : Int64 #

def user_id : User::PrimaryKeyType #

def user_id=(_user_id : User::PrimaryKeyType::Lucky::ColumnType) #

def user_query #