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

Commitcc4086c

Browse files
committed
feat(coderd): add user_pinned_workspaces table
1 parent156aaba commitcc4086c

File tree

5 files changed

+28
-0
lines changed

5 files changed

+28
-0
lines changed

‎coderd/database/dump.sql

Lines changed: 5 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+
DROPTABLE user_pinned_workspaces;
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
CREATETABLEuser_pinned_workspaces (
2+
user_id uuidNOT NULL,
3+
workspace_id uuidNOT NULL
4+
);
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
INSERT INTO user_pinned_workspaces
2+
(user_id, workspace_id)
3+
VALUES (
4+
'30095c71-380b-457a-8995-97b8ee6e5307',
5+
'3a9a1feb-e89d-457c-9d53-ac751b198ebe'
6+
);
7+
8+
INSERT INTO user_pinned_workspaces
9+
(user_id, workspace_id)
10+
VALUES (
11+
'0ed9befc-4911-4ccf-a8e2-559bf72daa94',
12+
'b90547be-8870-4d68-8184-e8b2242b7c01'
13+
);

‎coderd/database/models.go

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

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp