Skip to content

Commit bff34ea

Browse files
refactor: fix indentations
1 parent 5150a5c commit bff34ea

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

coderd/database/querier.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/database/queries.sql.go

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/database/queries/prebuilds.sql

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ WHERE tvp.desired_instances IS NOT NULL -- Consider only presets that have a pre
2323

2424
-- name: GetRunningPrebuilds :many
2525
SELECT p.id AS workspace_id,
26-
p.name AS workspace_name,
27-
p.template_id,
28-
b.template_version_id,
26+
p.name AS workspace_name,
27+
p.template_id,
28+
b.template_version_id,
2929
p.current_preset_id AS current_preset_id,
30-
p.ready,
31-
p.created_at
30+
p.ready,
31+
p.created_at
3232
FROM workspace_prebuilds p
3333
INNER JOIN workspace_latest_builds b ON b.workspace_id = p.id
3434
WHERE (b.transition = 'start'::workspace_transition

0 commit comments

Comments
 (0)