chore: sync local changes to Gitea
This commit is contained in:
9
migrations/0001_init.sql
Normal file
9
migrations/0001_init.sql
Normal 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);
|
||||
Reference in New Issue
Block a user