Skip to content

Commit 61c26ea

Browse files
fix: update testdata fixtures again
1 parent b8d5d1d commit 61c26ea

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

coderd/database/migrations/testdata/fixtures/000157_workspace_agent_script.up.sql

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ INSERT INTO workspace_agent_log_sources (
1515
) ON CONFLICT DO NOTHING;
1616

1717
INSERT INTO workspace_agent_scripts (
18-
id,
1918
workspace_agent_id,
2019
created_at,
2120
log_source_id,
@@ -27,7 +26,6 @@ INSERT INTO workspace_agent_scripts (
2726
run_on_stop,
2827
timeout_seconds
2928
) VALUES (
30-
'a810e1ba-0b28-4db2-a5b6-1857ea72bf93',
3129
'45e89705-e09d-4850-bcec-f9a937f5d78d',
3230
'2022-11-02 13:03:45.046432+02',
3331
'0ff953c0-92a6-4fe6-a415-eb0139a36ad1',
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
INSERT INTO workspace_agent_script_timings (script_id, display_name, started_at, ended_at, exit_code, ran_on_start, blocked_login)
22
VALUES
3-
('a810e1ba-0b28-4db2-a5b6-1857ea72bf93', 'Startup Script', NOW() - INTERVAL '1 hour 55 minutes', NOW() - INTERVAL '1 hour 50 minutes', 0, true, false);
3+
((SELECT id FROM workspace_agent_scripts LIMIT 1), 'Startup Script', NOW() - INTERVAL '1 hour 55 minutes', NOW() - INTERVAL '1 hour 50 minutes', 0, true, false);

0 commit comments

Comments
 (0)