Files
domainflare/migrations/0001_init.sql
2026-06-24 22:10:24 +08:00

10 lines
310 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- 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);