From f34adf1513062f3dca2c96d886b1f5e73b7068ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dafydd=20Ll=C5=B7r=20Pearson?= Date: Mon, 15 Jan 2024 10:58:55 +0000 Subject: [PATCH] fix: Sync team_id on team_themes table [skip pizza] (#2662) --- scripts/seed-database/write/team_themes.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/seed-database/write/team_themes.sql b/scripts/seed-database/write/team_themes.sql index 11154a90b6..432886d346 100644 --- a/scripts/seed-database/write/team_themes.sql +++ b/scripts/seed-database/write/team_themes.sql @@ -32,6 +32,7 @@ FROM sync_team_themes ON CONFLICT (id) DO UPDATE SET + team_id = EXCLUDED.team_id, primary_colour = EXCLUDED.primary_colour, -- secondary_colour = EXCLUDED.secondary_colour, logo = EXCLUDED.logo,