Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0037a64

Browse files
committed
Add test fixtures
1 parent 415d8b1 commit 0037a64

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
INSERT INTO workspace_agent_stats (
2+
id,
3+
created_at,
4+
user_id,
5+
agent_id,
6+
workspace_id,
7+
template_id,
8+
connection_median_latency_ms
9+
) VALUES (
10+
gen_random_uuid(),
11+
NOW(),
12+
gen_random_uuid(),
13+
gen_random_uuid(),
14+
gen_random_uuid(),
15+
gen_random_uuid(),
16+
1::bigint
17+
);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
INSERT INTO workspace_agent_stats (
2+
id,
3+
created_at,
4+
user_id,
5+
agent_id,
6+
workspace_id,
7+
template_id,
8+
connection_median_latency_ms
9+
) VALUES (
10+
gen_random_uuid(),
11+
NOW(),
12+
gen_random_uuid(),
13+
gen_random_uuid(),
14+
gen_random_uuid(),
15+
gen_random_uuid(),
16+
0.5::float
17+
);

0 commit comments

Comments
 (0)