Fix missing field in clients struct and non-partial fcmtoken index (also streamline db migrations)
Build Docker and Deploy / Build Docker Container (push) Successful in 1m52s
Build Docker and Deploy / Deploy to Server (push) Successful in 7s

This commit is contained in:
2024-09-17 22:26:45 +02:00
parent 4c7632a144
commit 9d35916280
9 changed files with 309 additions and 43 deletions
@@ -0,0 +1,7 @@
DROP INDEX "idx_clients_fcmtoken";
CREATE UNIQUE INDEX "idx_clients_fcmtoken" ON clients (fcm_token) WHERE deleted=0;