fix: only use umami in prod and remove UNIQUE modifier
All checks were successful
Build and Push Docker Image / Explore-Gitea-Actions (push) Successful in 52s

This commit is contained in:
Tim
2024-09-12 18:08:10 +02:00
parent ac1acd2129
commit 2d60ac4f6d
2 changed files with 6 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
-- E.G. email-verifications, password-resets, unsubscribe-from-newsletter etc.
CREATE TABLE user_token (
user_uuid TEXT NOT NULL UNIQUE,
user_uuid TEXT NOT NULL,
type TEXT NOT NULL,
token TEXT NOT NULL UNIQUE PRIMARY KEY,