Skip to content

Commit 4cd20e1

Browse files
committed
fix rbac roles
1 parent 63b5150 commit 4cd20e1

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)