mirror of
https://github.com/zvx-echo6/central.git
synced 2026-06-10 11:54:37 +02:00
v0.10.3: rip out state_511_atis adapter (superseded by itd_511 v0.10.0; Castle Rock legacy shape EOL per sister-site discovery) (#88)
Closes #88 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
557230c7a7
commit
0dd83a340e
23 changed files with 45 additions and 1036 deletions
13
sql/migrations/032_remove_state_511_atis_adapters.sql
Normal file
13
sql/migrations/032_remove_state_511_atis_adapters.sql
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
-- v0.10.3: rip out state_511_atis + state_511_atis_cameras (Castle Rock legacy
|
||||
-- shape EOL; superseded by itd_511 + itd_511_cameras from migration 031 / v0.10.0).
|
||||
--
|
||||
-- Idempotent: the DELETE succeeds whether the rows are present or not. Historical
|
||||
-- events in public.events stay (preserved as historical record per Matt's call);
|
||||
-- only the config.adapters rows that would otherwise be hot-reloaded into the
|
||||
-- supervisor are removed.
|
||||
--
|
||||
-- Note: cursors.db cleanup (published_ids for both adapters) is a SQLite-side
|
||||
-- step handled at deploy time, NOT in this Postgres migration.
|
||||
|
||||
DELETE FROM config.adapters
|
||||
WHERE name IN ('state_511_atis', 'state_511_atis_cameras');
|
||||
Loading…
Add table
Add a link
Reference in a new issue