def self.primary_key_name : Symbol | Nil
#
class UserOrder
Included Modules
- Avram::PrimaryKeyMethods
- DB::Mappable
- LuckyCache::Cachable
Defined in:
models/user_order.crConstant Summary
-
ASSOCIATIONS =
[{type: BonusLog, assoc_name: bonus_log, foreign_key: :user_order_id, relationship_type: :has_one, through: nil}, {type: User, assoc_name: user, foreign_key: :user_id, relationship_type: :belongs_to, through: nil}] of Nil
-
BONUS =
10
-
COLUMNS =
[{name: id, type: Int64, 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: user_id, type: User::PrimaryKeyType, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: product, type: String, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: price, type: Float64, nilable: false, autogenerated: false, value: nil, serialized: false}] of Nil
-
PRIMARY_KEY_NAME =
:id
-
PRIMARY_KEY_TYPE =
Int64
Constructors
- .new(id : Int64, created_at : Time, updated_at : Time, user_id : Int64, product : String, price : Float64 | PG::Numeric)
- .new(__temp_119 : 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_119 : DB::ResultSet)
- .primary_key_name : Symbol | Nil
- .schema_enforcer_validations
- .table_name : String
Instance Method Summary
-
#base_query_class : ::UserOrder::BaseQuery.class
This makes it easy for plugins and extensions to use the base SaveOperation
- #bonus_amount
- #bonus_log : BonusLog | Nil
- #bonus_log! : BonusLog | Nil
- #bonus_log_query
- #created_at : Time
- #created_at=(_created_at : Time::Lucky::ColumnType)
- #delete_operation_class : ::UserOrder::DeleteOperation.class
- #id : Int64
- #id=(_id : Int64::Lucky::ColumnType)
- #price : Float64
- #price=(_price : Float64::Lucky::ColumnType)
- #product : String
- #product=(_product : String::Lucky::ColumnType)
- #save_operation_class : ::UserOrder::SaveOperation.class
- #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 : Int64, created_at : Time, updated_at : Time, user_id : Int64, product : String, price : Float64 | PG::Numeric)
#
Class Method Detail
Instance Method Detail
This makes it easy for plugins and extensions to use the base SaveOperation