Versions in this module Expand all Collapse all v0 v0.1.1 Feb 25, 2021 Changes in this version + var WikiColumns = struct{ ... } + var WikiRels = struct{} + var WikiWhere = struct{ ... } + func AddWikiHook(hookPoint boil.HookPoint, wikiHook WikiHook) + func WikiExists(ctx context.Context, exec boil.ContextExecutor, iD int64) (bool, error) + func Wikis(mods ...qm.QueryMod) wikiQuery + type Wiki struct + Content string + CreatedAt time.Time + CreatedUserID int64 + ID int64 + L wikiL + Name string + ProjectID int64 + R *wikiR + UpdatedAt time.Time + UpdatedUserID int64 + func FindWiki(ctx context.Context, exec boil.ContextExecutor, iD int64, selectCols ...string) (*Wiki, error) + func (o *Wiki) Delete(ctx context.Context, exec boil.ContextExecutor) (int64, error) + func (o *Wiki) Insert(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) error + func (o *Wiki) Reload(ctx context.Context, exec boil.ContextExecutor) error + func (o *Wiki) Update(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) (int64, error) + type WikiHook func(context.Context, boil.ContextExecutor, *Wiki) error + type WikiSlice []*Wiki + func (o *WikiSlice) ReloadAll(ctx context.Context, exec boil.ContextExecutor) error + func (o WikiSlice) DeleteAll(ctx context.Context, exec boil.ContextExecutor) (int64, error) + func (o WikiSlice) UpdateAll(ctx context.Context, exec boil.ContextExecutor, cols M) (int64, error) v0.1.0 Feb 25, 2021 Changes in this version + var ErrSyncFail = errors.New("models: failed to synchronize data after insert") + var IssueColumns = struct{ ... } + var IssueRels = struct{} + var IssueTypeColumns = struct{ ... } + var IssueTypeRels = struct{} + var IssueTypeWhere = struct{ ... } + var IssueWhere = struct{ ... } + var PriorityColumns = struct{ ... } + var PriorityRels = struct{} + var PriorityWhere = struct{ ... } + var ProjectColumns = struct{ ... } + var ProjectRels = struct{} + var ProjectStatusColumns = struct{ ... } + var ProjectStatusRels = struct{} + var ProjectStatusWhere = struct{ ... } + var ProjectWhere = struct{ ... } + var TableNames = struct{ ... } + var UserColumns = struct{ ... } + var UserRels = struct{} + var UserWhere = struct{ ... } + func AddIssueHook(hookPoint boil.HookPoint, issueHook IssueHook) + func AddIssueTypeHook(hookPoint boil.HookPoint, issueTypeHook IssueTypeHook) + func AddPriorityHook(hookPoint boil.HookPoint, priorityHook PriorityHook) + func AddProjectHook(hookPoint boil.HookPoint, projectHook ProjectHook) + func AddProjectStatusHook(hookPoint boil.HookPoint, projectStatusHook ProjectStatusHook) + func AddUserHook(hookPoint boil.HookPoint, userHook UserHook) + func IssueExists(ctx context.Context, exec boil.ContextExecutor, iD int64) (bool, error) + func IssueTypeExists(ctx context.Context, exec boil.ContextExecutor, iD int64) (bool, error) + func IssueTypes(mods ...qm.QueryMod) issueTypeQuery + func Issues(mods ...qm.QueryMod) issueQuery + func NewQuery(mods ...qm.QueryMod) *queries.Query + func Priorities(mods ...qm.QueryMod) priorityQuery + func PriorityExists(ctx context.Context, exec boil.ContextExecutor, iD int64) (bool, error) + func ProjectExists(ctx context.Context, exec boil.ContextExecutor, iD int64) (bool, error) + func ProjectStatusExists(ctx context.Context, exec boil.ContextExecutor, iD int64) (bool, error) + func ProjectStatuses(mods ...qm.QueryMod) projectStatusQuery + func Projects(mods ...qm.QueryMod) projectQuery + func UserExists(ctx context.Context, exec boil.ContextExecutor, iD int64) (bool, error) + func Users(mods ...qm.QueryMod) userQuery + type Issue struct + ActualHours null.Float64 + AssigneeID null.Int64 + CreatedAt time.Time + CreatedUserID int64 + Description string + DueDate null.Time + EstimatedHours null.Float64 + ID int64 + IssueKey string + IssueTypeID null.Int64 + KeyID int64 + L issueL + ParentIssueID null.Int64 + PriorityID null.Int64 + ProjectID null.Int64 + R *issueR + ResolutionID null.Int64 + StartDate null.Time + StatusID null.Int64 + Summary string + UpdatedAt time.Time + UpdatedUserID int64 + func FindIssue(ctx context.Context, exec boil.ContextExecutor, iD int64, selectCols ...string) (*Issue, error) + func (o *Issue) Delete(ctx context.Context, exec boil.ContextExecutor) (int64, error) + func (o *Issue) Insert(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) error + func (o *Issue) Reload(ctx context.Context, exec boil.ContextExecutor) error + func (o *Issue) Update(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) (int64, error) + type IssueHook func(context.Context, boil.ContextExecutor, *Issue) error + type IssueSlice []*Issue + func (o *IssueSlice) ReloadAll(ctx context.Context, exec boil.ContextExecutor) error + func (o IssueSlice) DeleteAll(ctx context.Context, exec boil.ContextExecutor) (int64, error) + func (o IssueSlice) UpdateAll(ctx context.Context, exec boil.ContextExecutor, cols M) (int64, error) + type IssueType struct + Color string + CreatedAt time.Time + DisplayOrder int64 + ID int64 + L issueTypeL + Name string + ProjectID int64 + R *issueTypeR + UpdatedAt time.Time + func FindIssueType(ctx context.Context, exec boil.ContextExecutor, iD int64, selectCols ...string) (*IssueType, error) + func (o *IssueType) Delete(ctx context.Context, exec boil.ContextExecutor) (int64, error) + func (o *IssueType) Insert(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) error + func (o *IssueType) Reload(ctx context.Context, exec boil.ContextExecutor) error + func (o *IssueType) Update(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) (int64, error) + type IssueTypeHook func(context.Context, boil.ContextExecutor, *IssueType) error + type IssueTypeSlice []*IssueType + func (o *IssueTypeSlice) ReloadAll(ctx context.Context, exec boil.ContextExecutor) error + func (o IssueTypeSlice) DeleteAll(ctx context.Context, exec boil.ContextExecutor) (int64, error) + func (o IssueTypeSlice) UpdateAll(ctx context.Context, exec boil.ContextExecutor, cols M) (int64, error) + type M map[string]interface + type Priority struct + CreatedAt time.Time + ID int64 + L priorityL + Name string + R *priorityR + UpdatedAt time.Time + func FindPriority(ctx context.Context, exec boil.ContextExecutor, iD int64, selectCols ...string) (*Priority, error) + func (o *Priority) Delete(ctx context.Context, exec boil.ContextExecutor) (int64, error) + func (o *Priority) Insert(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) error + func (o *Priority) Reload(ctx context.Context, exec boil.ContextExecutor) error + func (o *Priority) Update(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) (int64, error) + type PriorityHook func(context.Context, boil.ContextExecutor, *Priority) error + type PrioritySlice []*Priority + func (o *PrioritySlice) ReloadAll(ctx context.Context, exec boil.ContextExecutor) error + func (o PrioritySlice) DeleteAll(ctx context.Context, exec boil.ContextExecutor) (int64, error) + func (o PrioritySlice) UpdateAll(ctx context.Context, exec boil.ContextExecutor, cols M) (int64, error) + type Project struct + Archived bool + ChartEnabled bool + CreatedAt time.Time + ID int64 + L projectL + Name string + ProjectKey string + ProjectLeaderCanEditProjectLeader bool + R *projectR + SubtaskingEnabled bool + TextFormattingRule string + UpdatedAt time.Time + func FindProject(ctx context.Context, exec boil.ContextExecutor, iD int64, selectCols ...string) (*Project, error) + func (o *Project) Delete(ctx context.Context, exec boil.ContextExecutor) (int64, error) + func (o *Project) Insert(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) error + func (o *Project) Reload(ctx context.Context, exec boil.ContextExecutor) error + func (o *Project) Update(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) (int64, error) + type ProjectHook func(context.Context, boil.ContextExecutor, *Project) error + type ProjectSlice []*Project + func (o *ProjectSlice) ReloadAll(ctx context.Context, exec boil.ContextExecutor) error + func (o ProjectSlice) DeleteAll(ctx context.Context, exec boil.ContextExecutor) (int64, error) + func (o ProjectSlice) UpdateAll(ctx context.Context, exec boil.ContextExecutor, cols M) (int64, error) + type ProjectStatus struct + Color string + CreatedAt time.Time + DisplayOrder int64 + ID int64 + L projectStatusL + Name string + ProjectID int64 + R *projectStatusR + UpdatedAt time.Time + func FindProjectStatus(ctx context.Context, exec boil.ContextExecutor, iD int64, selectCols ...string) (*ProjectStatus, error) + func (o *ProjectStatus) Delete(ctx context.Context, exec boil.ContextExecutor) (int64, error) + func (o *ProjectStatus) Insert(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) error + func (o *ProjectStatus) Reload(ctx context.Context, exec boil.ContextExecutor) error + func (o *ProjectStatus) Update(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) (int64, error) + type ProjectStatusHook func(context.Context, boil.ContextExecutor, *ProjectStatus) error + type ProjectStatusSlice []*ProjectStatus + func (o *ProjectStatusSlice) ReloadAll(ctx context.Context, exec boil.ContextExecutor) error + func (o ProjectStatusSlice) DeleteAll(ctx context.Context, exec boil.ContextExecutor) (int64, error) + func (o ProjectStatusSlice) UpdateAll(ctx context.Context, exec boil.ContextExecutor, cols M) (int64, error) + type User struct + CreatedAt time.Time + Email string + ID int64 + IsMyself bool + L userL + Language string + Name string + NulabAccountID null.Int64 + R *userR + RoleType int64 + UpdatedAt time.Time + UserID string + func FindUser(ctx context.Context, exec boil.ContextExecutor, iD int64, selectCols ...string) (*User, error) + func (o *User) Delete(ctx context.Context, exec boil.ContextExecutor) (int64, error) + func (o *User) Insert(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) error + func (o *User) Reload(ctx context.Context, exec boil.ContextExecutor) error + func (o *User) Update(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) (int64, error) + type UserHook func(context.Context, boil.ContextExecutor, *User) error + type UserSlice []*User + func (o *UserSlice) ReloadAll(ctx context.Context, exec boil.ContextExecutor) error + func (o UserSlice) DeleteAll(ctx context.Context, exec boil.ContextExecutor) (int64, error) + func (o UserSlice) UpdateAll(ctx context.Context, exec boil.ContextExecutor, cols M) (int64, error)