Skip to content

Commit 62e9543

Browse files
committed
add fixture
1 parent 1a313c9 commit 62e9543

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
INSERT INTO
2+
workspace_agent_memory_resource_monitors (
3+
agent_id,
4+
enabled,
5+
threshold,
6+
created_at
7+
)
8+
VALUES (
9+
'5755e622-fadd-44ca-98da-5df070491844', -- uuid
10+
true,
11+
90,
12+
'2024-01-01 00:00:00',
13+
);
14+
15+
INSERT INTO
16+
workspace_agent_volume_resource_monitors (
17+
agent_id,
18+
path,
19+
enabled,
20+
threshold,
21+
created_at
22+
)
23+
VALUES (
24+
'5755e622-fadd-44ca-98da-5df070491844', -- uuid
25+
'/',
26+
true,
27+
90,
28+
'2024-01-01 00:00:00',
29+
);
30+

0 commit comments

Comments
 (0)