Skip to content

Commit 9ed724e

Browse files
committed
make gen
1 parent 7dbde0a commit 9ed724e

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

coderd/database/dump.sql

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/database/modelmethods.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ func (gm GroupMember) RBACObject() rbac.Object {
193193
}
194194

195195
// WorkspaceTable converts a Workspace to it's reduced version.
196-
// A more generalized solution is to use json marshalling to
196+
// A more generalized solution is to use json marshaling to
197197
// consistently keep these two structs in sync.
198198
// That would be a lot of overhead, and a more costly unit test is
199199
// written to make sure these match up.

coderd/database/queries.sql.go

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/database/queries/workspaces.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ WHERE
335335
latest_build_canceled_at IS NULL AND
336336
latest_build_error IS NULL AND
337337
latest_build_transition = 'start'::workspace_transition) DESC,
338-
LOWER(username) ASC,
338+
LOWER(owner_username) ASC,
339339
LOWER(name) ASC
340340
LIMIT
341341
CASE

0 commit comments

Comments
 (0)