We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e8f740 commit 6daa32bCopy full SHA for 6daa32b
coderd/database/migrations/testdata/fixtures/000313_workspace_app_statuses.up.sql
@@ -0,0 +1,19 @@
1
+INSERT INTO workspace_app_statuses (
2
+ id,
3
+ created_at,
4
+ agent_id,
5
+ app_id,
6
+ workspace_id,
7
+ state,
8
+ needs_user_attention,
9
+ message
10
+) VALUES (
11
+ gen_random_uuid(),
12
+ NOW(),
13
+ '7a1ce5f8-8d00-431c-ad1b-97a846512804',
14
+ '36b65d0c-042b-4653-863a-655ee739861c',
15
+ '3a9a1feb-e89d-457c-9d53-ac751b198ebe',
16
+ 'working',
17
+ false,
18
+ 'Creating SQL queries for test data!'
19
+);
0 commit comments