Compare commits

..
2 Commits
Author SHA1 Message Date
robin 8ee2af480d Merge pull request 'Fixed position missing datatype' (#50) from dev into main
Build and Deploy / build-and-deploy (push) Successful in 2m2s
Build and Deploy / sync-dev (push) Successful in 14s
2026-09-11 19:53:45 +02:00
robin c0ff985061 fix: position missing datatype
PR Checks / lint-test-and-build (pull_request) Successful in 40s
2026-09-11 19:51:21 +02:00
@@ -1,7 +1,7 @@
BEGIN;
ALTER TABLE IF EXISTS list_users
ADD COLUMN IF NOT EXISTS position NOT NULL DEFAULT 0;
ADD COLUMN IF NOT EXISTS position BIGINT NOT NULL DEFAULT 0;
CREATE INDEX IF NOT EXISTS idx_list_users_user_id_position ON list_users (user_id, position);