feat: add address_block_list for new address (#185)

This commit is contained in:
Dream Hunter
2024-05-02 15:23:37 +08:00
committed by GitHub
parent e81142f5ef
commit 83b9bc9d5f
12 changed files with 178 additions and 20 deletions

View File

@@ -70,3 +70,10 @@ CREATE TABLE IF NOT EXISTS sendbox (
);
CREATE INDEX IF NOT EXISTS idx_sendbox_address ON sendbox(address);
CREATE TABLE IF NOT EXISTS settings (
key TEXT PRIMARY KEY,
value TEXT,
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
updated_at DATETIME DEFAULT CURRENT_TIMESTAMP
);