This commit is contained in:
“xHuPo” 2025-05-22 12:06:34 +08:00
parent 53e59ddf89
commit 079542e431
9 changed files with 191 additions and 57 deletions

View file

@ -2,5 +2,6 @@ CREATE TABLE IF NOT EXISTS otp (
id SERIAL PRIMARY KEY,
openid VARCHAR(255),
num INTEGER,
token VARCHAR(255)
token VARCHAR(255),
createtime TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);