fix: only use umami in prod and remove UNIQUE modifier

This commit is contained in:
2024-09-12 18:08:10 +02:00
parent 9039998e98
commit 44e8595b41
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,