@penclipai/db 2026.404.0 → 2026.404.1-canary.0

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,4 @@
1
+ ALTER TABLE "agents" ADD COLUMN "consecutive_failures" integer DEFAULT 0 NOT NULL;--> statement-breakpoint
2
+ ALTER TABLE "agents" ADD COLUMN "last_success_at" timestamp with time zone;--> statement-breakpoint
3
+ ALTER TABLE "agents" ADD COLUMN "last_failure_at" timestamp with time zone;--> statement-breakpoint
4
+ ALTER TABLE "agents" ADD COLUMN "circuit_breaker_state" text DEFAULT 'closed' NOT NULL;