This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Migration 020: qcp_agent_status + qcp_agent_status_events | |
| -- Source: services/queue-control-plane backed-by-postgres branch (PR #41). | |
| -- Run against database `cms_augmentation` on `psql-cms-call-router`. | |
| -- Idempotent retry: CREATE TABLE will raise 42P07 ("relation already exists") if rerun. | |
| -- ============================================================ | |
| -- Current state | |
| -- ============================================================ | |
| CREATE TABLE qcp_agent_status ( | |
| tenant_id UUID NOT NULL REFERENCES tenants(id) ON DELETE CASCADE, |