Files
ems/db/migration/V104__journal_stale_pending_cleanup.sql
Dusan Vojacek b168618332
Some checks failed
CI and deploy / migration-check (push) Successful in 15s
CI and deploy / deploy (push) Failing after 24s
V104 úklid stale pending + TUV design: stavový automat, spirála dump-load, legionella
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-13 00:31:24 +02:00

9 lines
327 B
SQL

-- Jednorázový úklid: pending příkazy z doby před opravou execute invariantu
-- (b087825 — „nikdy pending") nemá kdo dokončit.
update ems.modbus_command
set status = 'failed',
error_msg = 'stale pending (pre-fix b087825)'
where status = 'pending'
and created_at < timestamptz '2026-06-12T23:00:00Z';