def self.primary_key_name : Symbol | Nil
#
class Bit
Included Modules
- Avram::PrimaryKeyMethods
- DB::Mappable
- LuckyCache::Cachable
Defined in:
models/bit.crConstant Summary
-
ASSOCIATIONS =
[{type: User, assoc_name: user, foreign_key: :user_id, relationship_type: :belongs_to, through: nil}, {type: Group, assoc_name: group, foreign_key: :group_id, relationship_type: :belongs_to, through: nil}] of Nil
-
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: title, type: String, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: url, type: String, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: description, type: String, nilable: true, autogenerated: false, value: nil, serialized: false}, {name: user_id, type: User::PrimaryKeyType, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: group_id, type: Group::PrimaryKeyType, 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, title : String, url : String, description : Nil | String, user_id : Int64, group_id : Int64)
- .new(__temp_216 : 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_216 : DB::ResultSet)
- .primary_key_name : Symbol | Nil
- .schema_enforcer_validations
- .table_name : String
Instance Method Summary
-
#base_query_class : ::Bit::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 : ::Bit::DeleteOperation.class
- #description : String | Nil
- #description=(_description : String::Lucky::ColumnType | Nil)
- #group : Group
- #group! : Group
- #group_count : Int64
- #group_id : Group::PrimaryKeyType
- #group_id=(_group_id : Group::PrimaryKeyType::Lucky::ColumnType)
- #group_query
- #id : Int64
- #id=(_id : Int64::Lucky::ColumnType)
- #save_operation_class : ::Bit::SaveOperation.class
- #title : String
- #title=(_title : String::Lucky::ColumnType)
- #updated_at : Time
- #updated_at=(_updated_at : Time::Lucky::ColumnType)
- #url : String
- #url=(_url : String::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
database
Constructor Detail
def self.new(id : Int64, created_at : Time, updated_at : Time, title : String, url : String, description : Nil | String, user_id : Int64, group_id : Int64)
#
Class Method Detail
Instance Method Detail
This makes it easy for plugins and extensions to use the base SaveOperation