Skip to content

Commit db03c74

Browse files
committed
remove unused methods
1 parent e17bc77 commit db03c74

File tree

3 files changed

+0
-166
lines changed

3 files changed

+0
-166
lines changed

coderd/database/querier.go

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

coderd/database/queries.sql.go

Lines changed: 0 additions & 133 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: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -11,36 +11,6 @@ LIMIT
1111
-- name: GetWorkspacesByOrganizationID :many
1212
SELECT * FROM workspaces WHERE organization_id = $1 AND deleted = $2;
1313

14-
-- name: GetWorkspaces :many
15-
SELECT
16-
*
17-
FROM
18-
workspaces
19-
WHERE
20-
deleted = false;
21-
22-
-- name: GetWorkspacesAutostart :many
23-
SELECT
24-
*
25-
FROM
26-
workspaces
27-
WHERE
28-
deleted = false
29-
AND
30-
autostart_schedule <> ''
31-
;
32-
33-
-- name: GetWorkspacesAutostop :many
34-
SELECT
35-
*
36-
FROM
37-
workspaces
38-
WHERE
39-
deleted = false
40-
AND
41-
autostop_schedule <> ''
42-
;
43-
4414
-- name: GetWorkspacesAutostartAutostop :many
4515
SELECT
4616
*

0 commit comments

Comments
 (0)