def self.primary_key_name : Symbol | Nil
#
class User
- User
- BaseModel
- Avram::Model
- Reference
- Object
Included Modules
- Avram::PrimaryKeyMethods
- DB::Mappable
Defined in:
models/user.crConstant Summary
-
ASSOCIATIONS =
[{type: UserStoreDeliveryPoint, assoc_name: user_store_delivery_points, foreign_key: :user_id, relationship_type: :has_many, through: nil}, {type: UserAddressDeliveryPoint, assoc_name: user_address_delivery_points, foreign_key: :user_id, relationship_type: :has_many, 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: login, type: String, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: crypted_password, type: String, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: first_name, type: String, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: last_name, type: String, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: full_name, type: String, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: birth_date, type: Time, nilable: true, autogenerated: false, value: nil, serialized: false}, {name: bonuses, type: Int16, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: role, type: Int16, 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, login : String, crypted_password : String, first_name : String, last_name : String, full_name : String, birth_date : Time | Nil, bonuses : Int16, role : Int16)
- .new(__temp_195 : 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_195 : DB::ResultSet)
- .primary_key_name : Symbol | Nil
- .schema_enforcer_validations
- .table_name : String
Instance Method Summary
- #_preloaded_user_address_delivery_points=(_preloaded_user_address_delivery_points : Nil | Array(UserAddressDeliveryPoint))
- #_preloaded_user_store_delivery_points=(_preloaded_user_store_delivery_points : Nil | Array(UserStoreDeliveryPoint))
-
#base_query_class : ::User::BaseQuery.class
This makes it easy for plugins and extensions to use the base SaveOperation
- #birth_date : Time | Nil
- #birth_date=(_birth_date : Time::Lucky::ColumnType | Nil)
- #bonuses : Int16
- #bonuses=(_bonuses : Int16::Lucky::ColumnType)
- #created_at : Time
- #created_at=(_created_at : Time::Lucky::ColumnType)
- #crypted_password : String
- #crypted_password=(_crypted_password : String::Lucky::ColumnType)
- #delete_operation_class : ::User::DeleteOperation.class
- #encrypted_password : String | Nil
- #first_name : String
- #first_name=(_first_name : String::Lucky::ColumnType)
- #full_name : String
- #full_name=(_full_name : String::Lucky::ColumnType)
- #id : Int32
- #id=(_id : Int32::Lucky::ColumnType)
- #last_name : String
- #last_name=(_last_name : String::Lucky::ColumnType)
- #login : String
- #login=(_login : String::Lucky::ColumnType)
- #role : Int16
- #role=(_role : Int16::Lucky::ColumnType)
- #save_operation_class : ::User::SaveOperation.class
- #updated_at : Time
- #updated_at=(_updated_at : Time::Lucky::ColumnType)
- #user_address_delivery_points : Array(UserAddressDeliveryPoint)
- #user_address_delivery_points! : Array(UserAddressDeliveryPoint)
- #user_address_delivery_points_count : Int64
- #user_address_delivery_points_query
- #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, login : String, crypted_password : String, first_name : String, last_name : String, full_name : String, birth_date : Time | Nil, bonuses : Int16, role : Int16)
#
Class Method Detail
Instance Method Detail
def _preloaded_user_address_delivery_points=(_preloaded_user_address_delivery_points : Nil | Array(UserAddressDeliveryPoint))
#
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