class Post

Included Modules

Defined in:

models/post.cr

Constant Summary

ASSOCIATIONS = [] of Nil
COLUMNS = [{name: id, type: UUID, 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: body, type: String, nilable: false, autogenerated: false, value: nil, serialized: false}, {name: published_at, type: Time, nilable: false, autogenerated: false, value: nil, serialized: false}] of Nil
PRIMARY_KEY_NAME = :id
PRIMARY_KEY_TYPE = UUID

Constructors

Class Method Summary

Instance Method Summary

Class methods inherited from class BaseModel

database : Avram::Database.class database

Constructor Detail

def self.new(id : UUID, created_at : Time, updated_at : Time, title : String, body : String, published_at : Time) #

def self.new(__temp_111 : 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_111 : 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 : ::Post::BaseQuery.class #

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


def body : String #

def body=(_body : String::Lucky::ColumnType) #

def created_at : Time #

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

def delete_operation_class : ::Post::DeleteOperation.class #

def id : UUID #

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

def published_at : Time #

def published_at=(_published_at : Time::Lucky::ColumnType) #

def save_operation_class : ::Post::SaveOperation.class #

def title : String #

def title=(_title : String::Lucky::ColumnType) #

def updated_at : Time #

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