Versions in this module Expand all Collapse all v1 v1.0.0 Jan 12, 2024 v0 v0.1.1 Sep 11, 2023 v0.1.0 Aug 30, 2023 v0.0.1 Jul 18, 2023 Changes in this version + const TaskStatusBACKLOG + const TaskStatusDONE + const TaskStatusPROGRESS + var ErrSyncFail = errors.New("model: failed to synchronize data after insert") + var TableNames = struct{ ... } + var TaskColumns = struct{ ... } + var TaskRels = struct{} + var TaskTableColumns = struct{ ... } + var TaskWhere = struct{ ... } + var ViewNames = struct{} + func AddTaskHook(hookPoint boil.HookPoint, taskHook TaskHook) + func AllTaskStatus() []string + func NewQuery(mods ...qm.QueryMod) *queries.Query + func TaskExists(ctx context.Context, exec boil.ContextExecutor, iD string) (bool, error) + func Tasks(mods ...qm.QueryMod) taskQuery + type M map[string]interface + type Task struct + Content string + Created time.Time + ID string + L taskL + R *taskR + Status string + Title string + Updated time.Time + func FindTask(ctx context.Context, exec boil.ContextExecutor, iD string, ...) (*Task, error) + func (o *Task) Delete(ctx context.Context, exec boil.ContextExecutor) (int64, error) + func (o *Task) Exists(ctx context.Context, exec boil.ContextExecutor) (bool, error) + func (o *Task) Insert(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) error + func (o *Task) Reload(ctx context.Context, exec boil.ContextExecutor) error + func (o *Task) Update(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) (int64, error) + func (o *Task) Upsert(ctx context.Context, exec boil.ContextExecutor, ...) error + type TaskHook func(context.Context, boil.ContextExecutor, *Task) error + type TaskSlice []*Task + func (o *TaskSlice) ReloadAll(ctx context.Context, exec boil.ContextExecutor) error + func (o TaskSlice) DeleteAll(ctx context.Context, exec boil.ContextExecutor) (int64, error) + func (o TaskSlice) UpdateAll(ctx context.Context, exec boil.ContextExecutor, cols M) (int64, error)