@codified/cli 0.4.3 → 0.4.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,5 @@
1
+ -- Add metadata JSONB column to connector_sync_state for retry tracking
2
+ -- Stores: retryCount, lastRetryAt, nextRetryAt for auto-reconnection
3
+
4
+ ALTER TABLE connector_sync_state
5
+ ADD COLUMN IF NOT EXISTS metadata JSONB NOT NULL DEFAULT '{}';