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 63b5150 commit 4cd20e1Copy full SHA for 4cd20e1
coderd/database/migrations/testdata/fixtures/000266_notifications_inbox.up.sql
@@ -0,0 +1,25 @@
1
+INSERT INTO
2
+ inbox_notifications (
3
+ id,
4
+ user_id,
5
+ template_id,
6
+ targets,
7
+ title,
8
+ content,
9
+ icon,
10
+ actions,
11
+ read_at,
12
+ created_at
13
+ )
14
+ VALUES (
15
+ '68b396aa-7f53-4bf1-b8d8-4cbf5fa244e5', -- uuid
16
+ '45e89705-e09d-4850-bcec-f9a937f5d78d', -- uuid
17
+ '193590e9-918f-4ef9-be47-04625f49c4c3', -- uuid
18
+ ARRAY['45e89705-e09d-4850-bcec-f9a937f5d78d'], -- uuid[]
19
+ 'Test Notification',
20
+ 'This is a test notification',
21
+ 'https://test.coder.com/favicon.ico',
22
+ '{}',
23
+ '2024-01-01 00:00:00',
24
+ '2024-01-01 00:00:00'
25
+ );
0 commit comments