Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit5ebd76b

Browse files
committed
Merge branch 'main' into licenseflow
2 parents7408d42 +66d20ca commit5ebd76b

11 files changed

+17
-9
lines changed

‎coderd/database/dump.sql

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
DROPINDEX provisioner_job_logs_id_job_id_idx;
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CREATEINDEXprovisioner_job_logs_id_job_id_idxON provisioner_job_logs USING btree (job_id, idASC);
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
DROPINDEX workspace_agents_resource_id_idx;
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CREATEINDEXworkspace_agents_resource_id_idxON workspace_agents USING btree (resource_id);

‎coderd/database/queries.sql.go

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

‎coderd/database/queries/provisionerjoblogs.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ WHERE
88
AND (
99
id> @created_after
1010
OR id< @created_before
11-
)ORDER BY id;
11+
)ORDER BY idASC;
1212

1313
-- name: InsertProvisionerJobLogs :many
1414
INSERT INTO

‎coderd/database/queries/provisionerjobs.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ WHERE
2323
ANDnested.completed_at ISNULL
2424
ANDnested.provisioner= ANY(@types :: provisioner_type [ ])
2525
ORDER BY
26-
nested.created_at FOR
27-
UPDATE
28-
SKIP LOCKED
26+
nested.created_at
27+
FORUPDATE
28+
SKIP LOCKED
2929
LIMIT
3030
1
3131
) RETURNING*;

‎site/src/pages/GroupsPage/SettingsGroupPageView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ type FormData = {
2727

2828
constvalidationSchema=Yup.object({
2929
name:nameValidator("Name"),
30-
quota_allowance:Yup.number().required().positive().integer(),
30+
quota_allowance:Yup.number().required().min(0).integer(),
3131
})
3232

3333
constUpdateGroupForm:React.FC<{

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp