Versions in this module Expand all Collapse all v1 v1.5.0 Sep 27, 2023 v1.4.3 Aug 10, 2023 v1.4.2 Jul 25, 2023 v1.4.1 Mar 1, 2023 v1.4.0 Feb 26, 2023 Changes in this version + var ErrSyncFail = errors.New("models: failed to synchronize data after insert") + var MemoryColumns = struct{ ... } + var MemoryRels = struct{} + var MemoryTableColumns = struct{ ... } + var MemoryWhere = struct{ ... } + var TableNames = struct{ ... } + var ViewNames = struct{} + func AddMemoryHook(hookPoint boil.HookPoint, memoryHook MemoryHook) + func Memories(mods ...qm.QueryMod) memoryQuery + func MemoryExists(ctx context.Context, exec boil.ContextExecutor, iD int) (bool, error) + func NewQuery(mods ...qm.QueryMod) *queries.Query + type M map[string]interface + type Memory struct + Append time.Time + Author string + Content string + ID int + L memoryL + R *memoryR + func FindMemory(ctx context.Context, exec boil.ContextExecutor, iD int, selectCols ...string) (*Memory, error) + func (o *Memory) Delete(ctx context.Context, exec boil.ContextExecutor) (int64, error) + func (o *Memory) Insert(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) error + func (o *Memory) Reload(ctx context.Context, exec boil.ContextExecutor) error + func (o *Memory) Update(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) (int64, error) + func (o *Memory) Upsert(ctx context.Context, exec boil.ContextExecutor, updateOnConflict bool, ...) error + type MemoryHook func(context.Context, boil.ContextExecutor, *Memory) error + type MemorySlice []*Memory + func (o *MemorySlice) ReloadAll(ctx context.Context, exec boil.ContextExecutor) error + func (o MemorySlice) DeleteAll(ctx context.Context, exec boil.ContextExecutor) (int64, error) + func (o MemorySlice) UpdateAll(ctx context.Context, exec boil.ContextExecutor, cols M) (int64, error)