Documentation
¶
Index ¶
- Variables
- func UseSchema(schema string)
- type ActivitiesTable
- type CacheDemoTwoWorkItemsTable
- func (a CacheDemoTwoWorkItemsTable) AS(alias string) *CacheDemoTwoWorkItemsTable
- func (a CacheDemoTwoWorkItemsTable) FromSchema(schemaName string) *CacheDemoTwoWorkItemsTable
- func (a CacheDemoTwoWorkItemsTable) WithPrefix(prefix string) *CacheDemoTwoWorkItemsTable
- func (a CacheDemoTwoWorkItemsTable) WithSuffix(suffix string) *CacheDemoTwoWorkItemsTable
- type CacheDemoWorkItemsTable
- func (a CacheDemoWorkItemsTable) AS(alias string) *CacheDemoWorkItemsTable
- func (a CacheDemoWorkItemsTable) FromSchema(schemaName string) *CacheDemoWorkItemsTable
- func (a CacheDemoWorkItemsTable) WithPrefix(prefix string) *CacheDemoWorkItemsTable
- func (a CacheDemoWorkItemsTable) WithSuffix(suffix string) *CacheDemoWorkItemsTable
- type DemoTwoWorkItemsTable
- func (a DemoTwoWorkItemsTable) AS(alias string) *DemoTwoWorkItemsTable
- func (a DemoTwoWorkItemsTable) FromSchema(schemaName string) *DemoTwoWorkItemsTable
- func (a DemoTwoWorkItemsTable) WithPrefix(prefix string) *DemoTwoWorkItemsTable
- func (a DemoTwoWorkItemsTable) WithSuffix(suffix string) *DemoTwoWorkItemsTable
- type DemoWorkItemsTable
- type EntityNotificationsTable
- func (a EntityNotificationsTable) AS(alias string) *EntityNotificationsTable
- func (a EntityNotificationsTable) FromSchema(schemaName string) *EntityNotificationsTable
- func (a EntityNotificationsTable) WithPrefix(prefix string) *EntityNotificationsTable
- func (a EntityNotificationsTable) WithSuffix(suffix string) *EntityNotificationsTable
- type KanbanStepsTable
- type MoviesTable
- type NotificationsTable
- type ProjectsTable
- type SchemaMigrationsTable
- func (a SchemaMigrationsTable) AS(alias string) *SchemaMigrationsTable
- func (a SchemaMigrationsTable) FromSchema(schemaName string) *SchemaMigrationsTable
- func (a SchemaMigrationsTable) WithPrefix(prefix string) *SchemaMigrationsTable
- func (a SchemaMigrationsTable) WithSuffix(suffix string) *SchemaMigrationsTable
- type SchemaPostMigrationsTable
- func (a SchemaPostMigrationsTable) AS(alias string) *SchemaPostMigrationsTable
- func (a SchemaPostMigrationsTable) FromSchema(schemaName string) *SchemaPostMigrationsTable
- func (a SchemaPostMigrationsTable) WithPrefix(prefix string) *SchemaPostMigrationsTable
- func (a SchemaPostMigrationsTable) WithSuffix(suffix string) *SchemaPostMigrationsTable
- type TeamsTable
- type TimeEntriesTable
- type UserAPIKeysTable
- type UserNotificationsTable
- func (a UserNotificationsTable) AS(alias string) *UserNotificationsTable
- func (a UserNotificationsTable) FromSchema(schemaName string) *UserNotificationsTable
- func (a UserNotificationsTable) WithPrefix(prefix string) *UserNotificationsTable
- func (a UserNotificationsTable) WithSuffix(suffix string) *UserNotificationsTable
- type UserProjectTable
- type UserTeamTable
- type UsersTable
- type WorkItemAssigneeTable
- func (a WorkItemAssigneeTable) AS(alias string) *WorkItemAssigneeTable
- func (a WorkItemAssigneeTable) FromSchema(schemaName string) *WorkItemAssigneeTable
- func (a WorkItemAssigneeTable) WithPrefix(prefix string) *WorkItemAssigneeTable
- func (a WorkItemAssigneeTable) WithSuffix(suffix string) *WorkItemAssigneeTable
- type WorkItemCommentsTable
- func (a WorkItemCommentsTable) AS(alias string) *WorkItemCommentsTable
- func (a WorkItemCommentsTable) FromSchema(schemaName string) *WorkItemCommentsTable
- func (a WorkItemCommentsTable) WithPrefix(prefix string) *WorkItemCommentsTable
- func (a WorkItemCommentsTable) WithSuffix(suffix string) *WorkItemCommentsTable
- type WorkItemTagsTable
- type WorkItemTypesTable
- type WorkItemWorkItemTagTable
- func (a WorkItemWorkItemTagTable) AS(alias string) *WorkItemWorkItemTagTable
- func (a WorkItemWorkItemTagTable) FromSchema(schemaName string) *WorkItemWorkItemTagTable
- func (a WorkItemWorkItemTagTable) WithPrefix(prefix string) *WorkItemWorkItemTagTable
- func (a WorkItemWorkItemTagTable) WithSuffix(suffix string) *WorkItemWorkItemTagTable
- type WorkItemsTable
Constants ¶
This section is empty.
Variables ¶
var Activities = newActivitiesTable("public", "activities", "")
var CacheDemoTwoWorkItems = newCacheDemoTwoWorkItemsTable("public", "cache__demo_two_work_items", "")
var CacheDemoWorkItems = newCacheDemoWorkItemsTable("public", "cache__demo_work_items", "")
var DemoTwoWorkItems = newDemoTwoWorkItemsTable("public", "demo_two_work_items", "")
var DemoWorkItems = newDemoWorkItemsTable("public", "demo_work_items", "")
var EntityNotifications = newEntityNotificationsTable("public", "entity_notifications", "")
var KanbanSteps = newKanbanStepsTable("public", "kanban_steps", "")
var Movies = newMoviesTable("public", "movies", "")
var Notifications = newNotificationsTable("public", "notifications", "")
var Projects = newProjectsTable("public", "projects", "")
var SchemaMigrations = newSchemaMigrationsTable("public", "schema_migrations", "")
var SchemaPostMigrations = newSchemaPostMigrationsTable("public", "schema_post_migrations", "")
var Teams = newTeamsTable("public", "teams", "")
var TimeEntries = newTimeEntriesTable("public", "time_entries", "")
var UserAPIKeys = newUserAPIKeysTable("public", "user_api_keys", "")
var UserNotifications = newUserNotificationsTable("public", "user_notifications", "")
var UserProject = newUserProjectTable("public", "user_project", "")
var UserTeam = newUserTeamTable("public", "user_team", "")
var Users = newUsersTable("public", "users", "")
var WorkItemAssignee = newWorkItemAssigneeTable("public", "work_item_assignee", "")
var WorkItemComments = newWorkItemCommentsTable("public", "work_item_comments", "")
var WorkItemTags = newWorkItemTagsTable("public", "work_item_tags", "")
var WorkItemTypes = newWorkItemTypesTable("public", "work_item_types", "")
var WorkItemWorkItemTag = newWorkItemWorkItemTagTable("public", "work_item_work_item_tag", "")
var WorkItems = newWorkItemsTable("public", "work_items", "")
Functions ¶
Types ¶
type ActivitiesTable ¶
type ActivitiesTable struct { EXCLUDED activitiesTable // contains filtered or unexported fields }
func (ActivitiesTable) AS ¶
func (a ActivitiesTable) AS(alias string) *ActivitiesTable
AS creates new ActivitiesTable with assigned alias
func (ActivitiesTable) FromSchema ¶
func (a ActivitiesTable) FromSchema(schemaName string) *ActivitiesTable
Schema creates new ActivitiesTable with assigned schema name
func (ActivitiesTable) WithPrefix ¶
func (a ActivitiesTable) WithPrefix(prefix string) *ActivitiesTable
WithPrefix creates new ActivitiesTable with assigned table prefix
func (ActivitiesTable) WithSuffix ¶
func (a ActivitiesTable) WithSuffix(suffix string) *ActivitiesTable
WithSuffix creates new ActivitiesTable with assigned table suffix
type CacheDemoTwoWorkItemsTable ¶
type CacheDemoTwoWorkItemsTable struct { EXCLUDED cacheDemoTwoWorkItemsTable // contains filtered or unexported fields }
func (CacheDemoTwoWorkItemsTable) AS ¶
func (a CacheDemoTwoWorkItemsTable) AS(alias string) *CacheDemoTwoWorkItemsTable
AS creates new CacheDemoTwoWorkItemsTable with assigned alias
func (CacheDemoTwoWorkItemsTable) FromSchema ¶
func (a CacheDemoTwoWorkItemsTable) FromSchema(schemaName string) *CacheDemoTwoWorkItemsTable
Schema creates new CacheDemoTwoWorkItemsTable with assigned schema name
func (CacheDemoTwoWorkItemsTable) WithPrefix ¶
func (a CacheDemoTwoWorkItemsTable) WithPrefix(prefix string) *CacheDemoTwoWorkItemsTable
WithPrefix creates new CacheDemoTwoWorkItemsTable with assigned table prefix
func (CacheDemoTwoWorkItemsTable) WithSuffix ¶
func (a CacheDemoTwoWorkItemsTable) WithSuffix(suffix string) *CacheDemoTwoWorkItemsTable
WithSuffix creates new CacheDemoTwoWorkItemsTable with assigned table suffix
type CacheDemoWorkItemsTable ¶
type CacheDemoWorkItemsTable struct { EXCLUDED cacheDemoWorkItemsTable // contains filtered or unexported fields }
func (CacheDemoWorkItemsTable) AS ¶
func (a CacheDemoWorkItemsTable) AS(alias string) *CacheDemoWorkItemsTable
AS creates new CacheDemoWorkItemsTable with assigned alias
func (CacheDemoWorkItemsTable) FromSchema ¶
func (a CacheDemoWorkItemsTable) FromSchema(schemaName string) *CacheDemoWorkItemsTable
Schema creates new CacheDemoWorkItemsTable with assigned schema name
func (CacheDemoWorkItemsTable) WithPrefix ¶
func (a CacheDemoWorkItemsTable) WithPrefix(prefix string) *CacheDemoWorkItemsTable
WithPrefix creates new CacheDemoWorkItemsTable with assigned table prefix
func (CacheDemoWorkItemsTable) WithSuffix ¶
func (a CacheDemoWorkItemsTable) WithSuffix(suffix string) *CacheDemoWorkItemsTable
WithSuffix creates new CacheDemoWorkItemsTable with assigned table suffix
type DemoTwoWorkItemsTable ¶
type DemoTwoWorkItemsTable struct { EXCLUDED demoTwoWorkItemsTable // contains filtered or unexported fields }
func (DemoTwoWorkItemsTable) AS ¶
func (a DemoTwoWorkItemsTable) AS(alias string) *DemoTwoWorkItemsTable
AS creates new DemoTwoWorkItemsTable with assigned alias
func (DemoTwoWorkItemsTable) FromSchema ¶
func (a DemoTwoWorkItemsTable) FromSchema(schemaName string) *DemoTwoWorkItemsTable
Schema creates new DemoTwoWorkItemsTable with assigned schema name
func (DemoTwoWorkItemsTable) WithPrefix ¶
func (a DemoTwoWorkItemsTable) WithPrefix(prefix string) *DemoTwoWorkItemsTable
WithPrefix creates new DemoTwoWorkItemsTable with assigned table prefix
func (DemoTwoWorkItemsTable) WithSuffix ¶
func (a DemoTwoWorkItemsTable) WithSuffix(suffix string) *DemoTwoWorkItemsTable
WithSuffix creates new DemoTwoWorkItemsTable with assigned table suffix
type DemoWorkItemsTable ¶
type DemoWorkItemsTable struct { EXCLUDED demoWorkItemsTable // contains filtered or unexported fields }
func (DemoWorkItemsTable) AS ¶
func (a DemoWorkItemsTable) AS(alias string) *DemoWorkItemsTable
AS creates new DemoWorkItemsTable with assigned alias
func (DemoWorkItemsTable) FromSchema ¶
func (a DemoWorkItemsTable) FromSchema(schemaName string) *DemoWorkItemsTable
Schema creates new DemoWorkItemsTable with assigned schema name
func (DemoWorkItemsTable) WithPrefix ¶
func (a DemoWorkItemsTable) WithPrefix(prefix string) *DemoWorkItemsTable
WithPrefix creates new DemoWorkItemsTable with assigned table prefix
func (DemoWorkItemsTable) WithSuffix ¶
func (a DemoWorkItemsTable) WithSuffix(suffix string) *DemoWorkItemsTable
WithSuffix creates new DemoWorkItemsTable with assigned table suffix
type EntityNotificationsTable ¶
type EntityNotificationsTable struct { EXCLUDED entityNotificationsTable // contains filtered or unexported fields }
func (EntityNotificationsTable) AS ¶
func (a EntityNotificationsTable) AS(alias string) *EntityNotificationsTable
AS creates new EntityNotificationsTable with assigned alias
func (EntityNotificationsTable) FromSchema ¶
func (a EntityNotificationsTable) FromSchema(schemaName string) *EntityNotificationsTable
Schema creates new EntityNotificationsTable with assigned schema name
func (EntityNotificationsTable) WithPrefix ¶
func (a EntityNotificationsTable) WithPrefix(prefix string) *EntityNotificationsTable
WithPrefix creates new EntityNotificationsTable with assigned table prefix
func (EntityNotificationsTable) WithSuffix ¶
func (a EntityNotificationsTable) WithSuffix(suffix string) *EntityNotificationsTable
WithSuffix creates new EntityNotificationsTable with assigned table suffix
type KanbanStepsTable ¶
type KanbanStepsTable struct { EXCLUDED kanbanStepsTable // contains filtered or unexported fields }
func (KanbanStepsTable) AS ¶
func (a KanbanStepsTable) AS(alias string) *KanbanStepsTable
AS creates new KanbanStepsTable with assigned alias
func (KanbanStepsTable) FromSchema ¶
func (a KanbanStepsTable) FromSchema(schemaName string) *KanbanStepsTable
Schema creates new KanbanStepsTable with assigned schema name
func (KanbanStepsTable) WithPrefix ¶
func (a KanbanStepsTable) WithPrefix(prefix string) *KanbanStepsTable
WithPrefix creates new KanbanStepsTable with assigned table prefix
func (KanbanStepsTable) WithSuffix ¶
func (a KanbanStepsTable) WithSuffix(suffix string) *KanbanStepsTable
WithSuffix creates new KanbanStepsTable with assigned table suffix
type MoviesTable ¶
type MoviesTable struct { EXCLUDED moviesTable // contains filtered or unexported fields }
func (MoviesTable) AS ¶
func (a MoviesTable) AS(alias string) *MoviesTable
AS creates new MoviesTable with assigned alias
func (MoviesTable) FromSchema ¶
func (a MoviesTable) FromSchema(schemaName string) *MoviesTable
Schema creates new MoviesTable with assigned schema name
func (MoviesTable) WithPrefix ¶
func (a MoviesTable) WithPrefix(prefix string) *MoviesTable
WithPrefix creates new MoviesTable with assigned table prefix
func (MoviesTable) WithSuffix ¶
func (a MoviesTable) WithSuffix(suffix string) *MoviesTable
WithSuffix creates new MoviesTable with assigned table suffix
type NotificationsTable ¶
type NotificationsTable struct { EXCLUDED notificationsTable // contains filtered or unexported fields }
func (NotificationsTable) AS ¶
func (a NotificationsTable) AS(alias string) *NotificationsTable
AS creates new NotificationsTable with assigned alias
func (NotificationsTable) FromSchema ¶
func (a NotificationsTable) FromSchema(schemaName string) *NotificationsTable
Schema creates new NotificationsTable with assigned schema name
func (NotificationsTable) WithPrefix ¶
func (a NotificationsTable) WithPrefix(prefix string) *NotificationsTable
WithPrefix creates new NotificationsTable with assigned table prefix
func (NotificationsTable) WithSuffix ¶
func (a NotificationsTable) WithSuffix(suffix string) *NotificationsTable
WithSuffix creates new NotificationsTable with assigned table suffix
type ProjectsTable ¶
type ProjectsTable struct { EXCLUDED projectsTable // contains filtered or unexported fields }
func (ProjectsTable) AS ¶
func (a ProjectsTable) AS(alias string) *ProjectsTable
AS creates new ProjectsTable with assigned alias
func (ProjectsTable) FromSchema ¶
func (a ProjectsTable) FromSchema(schemaName string) *ProjectsTable
Schema creates new ProjectsTable with assigned schema name
func (ProjectsTable) WithPrefix ¶
func (a ProjectsTable) WithPrefix(prefix string) *ProjectsTable
WithPrefix creates new ProjectsTable with assigned table prefix
func (ProjectsTable) WithSuffix ¶
func (a ProjectsTable) WithSuffix(suffix string) *ProjectsTable
WithSuffix creates new ProjectsTable with assigned table suffix
type SchemaMigrationsTable ¶
type SchemaMigrationsTable struct { EXCLUDED schemaMigrationsTable // contains filtered or unexported fields }
func (SchemaMigrationsTable) AS ¶
func (a SchemaMigrationsTable) AS(alias string) *SchemaMigrationsTable
AS creates new SchemaMigrationsTable with assigned alias
func (SchemaMigrationsTable) FromSchema ¶
func (a SchemaMigrationsTable) FromSchema(schemaName string) *SchemaMigrationsTable
Schema creates new SchemaMigrationsTable with assigned schema name
func (SchemaMigrationsTable) WithPrefix ¶
func (a SchemaMigrationsTable) WithPrefix(prefix string) *SchemaMigrationsTable
WithPrefix creates new SchemaMigrationsTable with assigned table prefix
func (SchemaMigrationsTable) WithSuffix ¶
func (a SchemaMigrationsTable) WithSuffix(suffix string) *SchemaMigrationsTable
WithSuffix creates new SchemaMigrationsTable with assigned table suffix
type SchemaPostMigrationsTable ¶
type SchemaPostMigrationsTable struct { EXCLUDED schemaPostMigrationsTable // contains filtered or unexported fields }
func (SchemaPostMigrationsTable) AS ¶
func (a SchemaPostMigrationsTable) AS(alias string) *SchemaPostMigrationsTable
AS creates new SchemaPostMigrationsTable with assigned alias
func (SchemaPostMigrationsTable) FromSchema ¶
func (a SchemaPostMigrationsTable) FromSchema(schemaName string) *SchemaPostMigrationsTable
Schema creates new SchemaPostMigrationsTable with assigned schema name
func (SchemaPostMigrationsTable) WithPrefix ¶
func (a SchemaPostMigrationsTable) WithPrefix(prefix string) *SchemaPostMigrationsTable
WithPrefix creates new SchemaPostMigrationsTable with assigned table prefix
func (SchemaPostMigrationsTable) WithSuffix ¶
func (a SchemaPostMigrationsTable) WithSuffix(suffix string) *SchemaPostMigrationsTable
WithSuffix creates new SchemaPostMigrationsTable with assigned table suffix
type TeamsTable ¶
type TeamsTable struct { EXCLUDED teamsTable // contains filtered or unexported fields }
func (TeamsTable) AS ¶
func (a TeamsTable) AS(alias string) *TeamsTable
AS creates new TeamsTable with assigned alias
func (TeamsTable) FromSchema ¶
func (a TeamsTable) FromSchema(schemaName string) *TeamsTable
Schema creates new TeamsTable with assigned schema name
func (TeamsTable) WithPrefix ¶
func (a TeamsTable) WithPrefix(prefix string) *TeamsTable
WithPrefix creates new TeamsTable with assigned table prefix
func (TeamsTable) WithSuffix ¶
func (a TeamsTable) WithSuffix(suffix string) *TeamsTable
WithSuffix creates new TeamsTable with assigned table suffix
type TimeEntriesTable ¶
type TimeEntriesTable struct { EXCLUDED timeEntriesTable // contains filtered or unexported fields }
func (TimeEntriesTable) AS ¶
func (a TimeEntriesTable) AS(alias string) *TimeEntriesTable
AS creates new TimeEntriesTable with assigned alias
func (TimeEntriesTable) FromSchema ¶
func (a TimeEntriesTable) FromSchema(schemaName string) *TimeEntriesTable
Schema creates new TimeEntriesTable with assigned schema name
func (TimeEntriesTable) WithPrefix ¶
func (a TimeEntriesTable) WithPrefix(prefix string) *TimeEntriesTable
WithPrefix creates new TimeEntriesTable with assigned table prefix
func (TimeEntriesTable) WithSuffix ¶
func (a TimeEntriesTable) WithSuffix(suffix string) *TimeEntriesTable
WithSuffix creates new TimeEntriesTable with assigned table suffix
type UserAPIKeysTable ¶
type UserAPIKeysTable struct { EXCLUDED userAPIKeysTable // contains filtered or unexported fields }
func (UserAPIKeysTable) AS ¶
func (a UserAPIKeysTable) AS(alias string) *UserAPIKeysTable
AS creates new UserAPIKeysTable with assigned alias
func (UserAPIKeysTable) FromSchema ¶
func (a UserAPIKeysTable) FromSchema(schemaName string) *UserAPIKeysTable
Schema creates new UserAPIKeysTable with assigned schema name
func (UserAPIKeysTable) WithPrefix ¶
func (a UserAPIKeysTable) WithPrefix(prefix string) *UserAPIKeysTable
WithPrefix creates new UserAPIKeysTable with assigned table prefix
func (UserAPIKeysTable) WithSuffix ¶
func (a UserAPIKeysTable) WithSuffix(suffix string) *UserAPIKeysTable
WithSuffix creates new UserAPIKeysTable with assigned table suffix
type UserNotificationsTable ¶
type UserNotificationsTable struct { EXCLUDED userNotificationsTable // contains filtered or unexported fields }
func (UserNotificationsTable) AS ¶
func (a UserNotificationsTable) AS(alias string) *UserNotificationsTable
AS creates new UserNotificationsTable with assigned alias
func (UserNotificationsTable) FromSchema ¶
func (a UserNotificationsTable) FromSchema(schemaName string) *UserNotificationsTable
Schema creates new UserNotificationsTable with assigned schema name
func (UserNotificationsTable) WithPrefix ¶
func (a UserNotificationsTable) WithPrefix(prefix string) *UserNotificationsTable
WithPrefix creates new UserNotificationsTable with assigned table prefix
func (UserNotificationsTable) WithSuffix ¶
func (a UserNotificationsTable) WithSuffix(suffix string) *UserNotificationsTable
WithSuffix creates new UserNotificationsTable with assigned table suffix
type UserProjectTable ¶
type UserProjectTable struct { EXCLUDED userProjectTable // contains filtered or unexported fields }
func (UserProjectTable) AS ¶
func (a UserProjectTable) AS(alias string) *UserProjectTable
AS creates new UserProjectTable with assigned alias
func (UserProjectTable) FromSchema ¶
func (a UserProjectTable) FromSchema(schemaName string) *UserProjectTable
Schema creates new UserProjectTable with assigned schema name
func (UserProjectTable) WithPrefix ¶
func (a UserProjectTable) WithPrefix(prefix string) *UserProjectTable
WithPrefix creates new UserProjectTable with assigned table prefix
func (UserProjectTable) WithSuffix ¶
func (a UserProjectTable) WithSuffix(suffix string) *UserProjectTable
WithSuffix creates new UserProjectTable with assigned table suffix
type UserTeamTable ¶
type UserTeamTable struct { EXCLUDED userTeamTable // contains filtered or unexported fields }
func (UserTeamTable) AS ¶
func (a UserTeamTable) AS(alias string) *UserTeamTable
AS creates new UserTeamTable with assigned alias
func (UserTeamTable) FromSchema ¶
func (a UserTeamTable) FromSchema(schemaName string) *UserTeamTable
Schema creates new UserTeamTable with assigned schema name
func (UserTeamTable) WithPrefix ¶
func (a UserTeamTable) WithPrefix(prefix string) *UserTeamTable
WithPrefix creates new UserTeamTable with assigned table prefix
func (UserTeamTable) WithSuffix ¶
func (a UserTeamTable) WithSuffix(suffix string) *UserTeamTable
WithSuffix creates new UserTeamTable with assigned table suffix
type UsersTable ¶
type UsersTable struct { EXCLUDED usersTable // contains filtered or unexported fields }
func (UsersTable) AS ¶
func (a UsersTable) AS(alias string) *UsersTable
AS creates new UsersTable with assigned alias
func (UsersTable) FromSchema ¶
func (a UsersTable) FromSchema(schemaName string) *UsersTable
Schema creates new UsersTable with assigned schema name
func (UsersTable) WithPrefix ¶
func (a UsersTable) WithPrefix(prefix string) *UsersTable
WithPrefix creates new UsersTable with assigned table prefix
func (UsersTable) WithSuffix ¶
func (a UsersTable) WithSuffix(suffix string) *UsersTable
WithSuffix creates new UsersTable with assigned table suffix
type WorkItemAssigneeTable ¶
type WorkItemAssigneeTable struct { EXCLUDED workItemAssigneeTable // contains filtered or unexported fields }
func (WorkItemAssigneeTable) AS ¶
func (a WorkItemAssigneeTable) AS(alias string) *WorkItemAssigneeTable
AS creates new WorkItemAssigneeTable with assigned alias
func (WorkItemAssigneeTable) FromSchema ¶
func (a WorkItemAssigneeTable) FromSchema(schemaName string) *WorkItemAssigneeTable
Schema creates new WorkItemAssigneeTable with assigned schema name
func (WorkItemAssigneeTable) WithPrefix ¶
func (a WorkItemAssigneeTable) WithPrefix(prefix string) *WorkItemAssigneeTable
WithPrefix creates new WorkItemAssigneeTable with assigned table prefix
func (WorkItemAssigneeTable) WithSuffix ¶
func (a WorkItemAssigneeTable) WithSuffix(suffix string) *WorkItemAssigneeTable
WithSuffix creates new WorkItemAssigneeTable with assigned table suffix
type WorkItemCommentsTable ¶
type WorkItemCommentsTable struct { EXCLUDED workItemCommentsTable // contains filtered or unexported fields }
func (WorkItemCommentsTable) AS ¶
func (a WorkItemCommentsTable) AS(alias string) *WorkItemCommentsTable
AS creates new WorkItemCommentsTable with assigned alias
func (WorkItemCommentsTable) FromSchema ¶
func (a WorkItemCommentsTable) FromSchema(schemaName string) *WorkItemCommentsTable
Schema creates new WorkItemCommentsTable with assigned schema name
func (WorkItemCommentsTable) WithPrefix ¶
func (a WorkItemCommentsTable) WithPrefix(prefix string) *WorkItemCommentsTable
WithPrefix creates new WorkItemCommentsTable with assigned table prefix
func (WorkItemCommentsTable) WithSuffix ¶
func (a WorkItemCommentsTable) WithSuffix(suffix string) *WorkItemCommentsTable
WithSuffix creates new WorkItemCommentsTable with assigned table suffix
type WorkItemTagsTable ¶
type WorkItemTagsTable struct { EXCLUDED workItemTagsTable // contains filtered or unexported fields }
func (WorkItemTagsTable) AS ¶
func (a WorkItemTagsTable) AS(alias string) *WorkItemTagsTable
AS creates new WorkItemTagsTable with assigned alias
func (WorkItemTagsTable) FromSchema ¶
func (a WorkItemTagsTable) FromSchema(schemaName string) *WorkItemTagsTable
Schema creates new WorkItemTagsTable with assigned schema name
func (WorkItemTagsTable) WithPrefix ¶
func (a WorkItemTagsTable) WithPrefix(prefix string) *WorkItemTagsTable
WithPrefix creates new WorkItemTagsTable with assigned table prefix
func (WorkItemTagsTable) WithSuffix ¶
func (a WorkItemTagsTable) WithSuffix(suffix string) *WorkItemTagsTable
WithSuffix creates new WorkItemTagsTable with assigned table suffix
type WorkItemTypesTable ¶
type WorkItemTypesTable struct { EXCLUDED workItemTypesTable // contains filtered or unexported fields }
func (WorkItemTypesTable) AS ¶
func (a WorkItemTypesTable) AS(alias string) *WorkItemTypesTable
AS creates new WorkItemTypesTable with assigned alias
func (WorkItemTypesTable) FromSchema ¶
func (a WorkItemTypesTable) FromSchema(schemaName string) *WorkItemTypesTable
Schema creates new WorkItemTypesTable with assigned schema name
func (WorkItemTypesTable) WithPrefix ¶
func (a WorkItemTypesTable) WithPrefix(prefix string) *WorkItemTypesTable
WithPrefix creates new WorkItemTypesTable with assigned table prefix
func (WorkItemTypesTable) WithSuffix ¶
func (a WorkItemTypesTable) WithSuffix(suffix string) *WorkItemTypesTable
WithSuffix creates new WorkItemTypesTable with assigned table suffix
type WorkItemWorkItemTagTable ¶
type WorkItemWorkItemTagTable struct { EXCLUDED workItemWorkItemTagTable // contains filtered or unexported fields }
func (WorkItemWorkItemTagTable) AS ¶
func (a WorkItemWorkItemTagTable) AS(alias string) *WorkItemWorkItemTagTable
AS creates new WorkItemWorkItemTagTable with assigned alias
func (WorkItemWorkItemTagTable) FromSchema ¶
func (a WorkItemWorkItemTagTable) FromSchema(schemaName string) *WorkItemWorkItemTagTable
Schema creates new WorkItemWorkItemTagTable with assigned schema name
func (WorkItemWorkItemTagTable) WithPrefix ¶
func (a WorkItemWorkItemTagTable) WithPrefix(prefix string) *WorkItemWorkItemTagTable
WithPrefix creates new WorkItemWorkItemTagTable with assigned table prefix
func (WorkItemWorkItemTagTable) WithSuffix ¶
func (a WorkItemWorkItemTagTable) WithSuffix(suffix string) *WorkItemWorkItemTagTable
WithSuffix creates new WorkItemWorkItemTagTable with assigned table suffix
type WorkItemsTable ¶
type WorkItemsTable struct { EXCLUDED workItemsTable // contains filtered or unexported fields }
func (WorkItemsTable) AS ¶
func (a WorkItemsTable) AS(alias string) *WorkItemsTable
AS creates new WorkItemsTable with assigned alias
func (WorkItemsTable) FromSchema ¶
func (a WorkItemsTable) FromSchema(schemaName string) *WorkItemsTable
Schema creates new WorkItemsTable with assigned schema name
func (WorkItemsTable) WithPrefix ¶
func (a WorkItemsTable) WithPrefix(prefix string) *WorkItemsTable
WithPrefix creates new WorkItemsTable with assigned table prefix
func (WorkItemsTable) WithSuffix ¶
func (a WorkItemsTable) WithSuffix(suffix string) *WorkItemsTable
WithSuffix creates new WorkItemsTable with assigned table suffix
Source Files
¶
- activities.go
- cache__demo_two_work_items.go
- cache__demo_work_items.go
- demo_two_work_items.go
- demo_work_items.go
- entity_notifications.go
- kanban_steps.go
- movies.go
- notifications.go
- projects.go
- schema_migrations.go
- schema_post_migrations.go
- table_use_schema.go
- teams.go
- time_entries.go
- user_api_keys.go
- user_notifications.go
- user_project.go
- user_team.go
- users.go
- work_item_assignee.go
- work_item_comments.go
- work_item_tags.go
- work_item_types.go
- work_item_work_item_tag.go
- work_items.go