abstract class Orma::Record
- Orma::Record
- Reference
- Object
Defined in:
orma/record.crorma/record/from_http_params.cr
Constructors
- .new(db_res : DB::ResultSet | FakeResult)
- .new(*, __http_params : String)
- .new(**args : **T) forall T
Class Method Summary
- .all
- .continuous_migration!
- .db
- .db_connection_string
- .deprecate_columns!
- .ensure_columns_exist!
- .ensure_table_exists!
- .ensure_unique_indexes_exist!
- .find(id)
- .from_http_params(str : String)
- .table_name
- .where(conditions)
Macro Summary
- column(type_decl, unique = false)
- deprecated_column(type_decl)
- has_many_of(klass)
- id_column(type_decl)
- password_column(name)
Instance Method Summary
-
#==(other : self)
Returns
true
if this reference is the same as other. - #assign_http_params(params)
- #db
- #id
- #save
- #table_name
Constructor Detail
Class Method Detail
Macro Detail
Instance Method Detail
def ==(other : self)
#
Description copied from class Reference
Returns true
if this reference is the same as other. Invokes same?
.