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
+9
View File
@@ -0,0 +1,9 @@
CREATE TABLE `provisioner_workers` (
`tenant_id` text PRIMARY KEY NOT NULL,
`worker_id` text NOT NULL,
`poll_count` integer DEFAULT 1 NOT NULL,
`last_seen_at` text NOT NULL,
`created_at` text DEFAULT CURRENT_TIMESTAMP NOT NULL,
`updated_at` text DEFAULT CURRENT_TIMESTAMP NOT NULL,
FOREIGN KEY (`tenant_id`) REFERENCES `tenant_instances`(`id`) ON UPDATE no action ON DELETE no action
);