From f686daaeae9d4b6b8fda411784067787f48e720d Mon Sep 17 00:00:00 2001 From: w Date: Tue, 8 Jul 2025 00:21:17 -0300 Subject: [PATCH] add to the player table the fedi server id --- migrations/0007_duelv1.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/migrations/0007_duelv1.sql b/migrations/0007_duelv1.sql index a55d757..c0870cf 100644 --- a/migrations/0007_duelv1.sql +++ b/migrations/0007_duelv1.sql @@ -41,3 +41,5 @@ CREATE TABLE duel_requests ( accepted BOOLEAN NOT NULL DEFAULT 0, competitive BOOLEAN NOT NULL DEFAULT 0 ); + +ALTER TABLE players ADD COLUMN server_id text NOT NULL DEFAULT '0'; \ No newline at end of file