mirror of
https://github.com/dreamhunter2333/cloudflare_temp_email.git
synced 2026-05-06 20:32:55 +08:00
feat: add admin account search && delete account for user (#96)
* feat: add admin account search && delete account for user * feat: add admin account search && delete account for user
This commit is contained in:
4
db/2024-04-03-patch.sql
Normal file
4
db/2024-04-03-patch.sql
Normal file
@@ -0,0 +1,4 @@
|
||||
ALTER TABLE
|
||||
address
|
||||
ADD
|
||||
updated_at DATETIME;
|
||||
@@ -11,7 +11,8 @@ CREATE TABLE IF NOT EXISTS mails (
|
||||
CREATE TABLE IF NOT EXISTS address (
|
||||
id INTEGER PRIMARY KEY,
|
||||
name TEXT UNIQUE,
|
||||
created_at DATETIME DEFAULT CURRENT_TIMESTAMP
|
||||
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
|
||||
updated_at DATETIME DEFAULT CURRENT_TIMESTAMP
|
||||
);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS auto_reply_mails (
|
||||
|
||||
Reference in New Issue
Block a user