Skip to content

Commit 55b93e7

Browse files
committed
fix indentation
1 parent fb953e4 commit 55b93e7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

coderd/database/queries/gitauth.sql

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ INSERT INTO git_auth_links (
1111
created_at,
1212
updated_at,
1313
oauth_access_token,
14-
oauth_access_token_key_id,
14+
oauth_access_token_key_id,
1515
oauth_refresh_token,
16-
oauth_refresh_token_key_id,
16+
oauth_refresh_token_key_id,
1717
oauth_expiry
1818
) VALUES (
1919
$1,
@@ -23,16 +23,16 @@ INSERT INTO git_auth_links (
2323
$5,
2424
$6,
2525
$7,
26-
$8,
27-
$9
26+
$8,
27+
$9
2828
) RETURNING *;
2929

3030
-- name: UpdateGitAuthLink :one
3131
UPDATE git_auth_links SET
3232
updated_at = $3,
3333
oauth_access_token = $4,
34-
oauth_access_token_key_id = $5,
34+
oauth_access_token_key_id = $5,
3535
oauth_refresh_token = $6,
36-
oauth_refresh_token_key_id = $7,
36+
oauth_refresh_token_key_id = $7,
3737
oauth_expiry = $8
3838
WHERE provider_id = $1 AND user_id = $2 RETURNING *;

0 commit comments

Comments
 (0)