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 `maintenance_jobs` (
`key` text PRIMARY KEY NOT NULL,
`state` text NOT NULL,
`run_id` text,
`trigger` text,
`scheduled_at` text,
`started_at` text,
`completed_at` text,
`last_success_at` text,
`result_json` text,
`error_code` text,
`consecutive_failures` integer DEFAULT 0 NOT NULL,
`run_count` integer DEFAULT 0 NOT NULL,
`created_at` text DEFAULT CURRENT_TIMESTAMP NOT NULL,
`updated_at` text DEFAULT CURRENT_TIMESTAMP NOT NULL
);