chore: sync local changes to Gitea

This commit is contained in:
shumengya
2026-06-24 22:10:24 +08:00
commit d7ef0c3549
49 changed files with 12762 additions and 0 deletions

9
migrations/0001_init.sql Normal file
View File

@@ -0,0 +1,9 @@
-- Cloudflare 账号API Token持久化
CREATE TABLE IF NOT EXISTS cf_accounts (
id TEXT PRIMARY KEY NOT NULL,
name TEXT NOT NULL DEFAULT '',
token TEXT NOT NULL,
created_at INTEGER NOT NULL DEFAULT (unixepoch())
);
CREATE INDEX IF NOT EXISTS idx_cf_accounts_created ON cf_accounts (created_at);