feat: establish NekoNest Cloud control and relay

This commit is contained in:
2026-08-12 23:25:43 +08:00
commit f27606b709
222 changed files with 71456 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
CREATE TABLE `service_incidents` (
`id` text PRIMARY KEY NOT NULL,
`severity` text NOT NULL,
`title` text NOT NULL,
`message` text NOT NULL,
`status` text DEFAULT 'active' NOT NULL,
`created_by` text NOT NULL,
`resolved_by` text,
`resolution` text,
`started_at` text NOT NULL,
`resolved_at` text,
`created_at` text DEFAULT CURRENT_TIMESTAMP NOT NULL,
`updated_at` text DEFAULT CURRENT_TIMESTAMP NOT NULL
);
--> statement-breakpoint
CREATE INDEX `idx_service_incidents_status_started` ON `service_incidents` (`status`,`started_at`);