This commit is contained in:
Janis Steiner
2025-01-01 17:48:31 +01:00
parent 6ddbe08a25
commit 12b56c0683
3 changed files with 13 additions and 5 deletions

View File

@@ -100,7 +100,8 @@
$sql="CREATE TABLE IF NOT EXISTS auth_tokens (
id INT AUTO_INCREMENT PRIMARY KEY,
auth_token VARCHAR(256),
user_id INT
user_id INT,
valid_until INT
);";