From e2f31d99fdb8015390df775ea33cf2eccaad2fd9 Mon Sep 17 00:00:00 2001 From: AzuTear Date: Thu, 25 Jun 2026 19:54:17 +0200 Subject: [PATCH] Add footer content columns to production bootstrap --- Backend/Data/OperationalTablesBootstrapper.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Backend/Data/OperationalTablesBootstrapper.cs b/Backend/Data/OperationalTablesBootstrapper.cs index 4123b1d..f32dea6 100644 --- a/Backend/Data/OperationalTablesBootstrapper.cs +++ b/Backend/Data/OperationalTablesBootstrapper.cs @@ -31,6 +31,15 @@ public static class OperationalTablesBootstrapper ALTER TABLE "SiteSettings" ADD COLUMN IF NOT EXISTS "TwitchScope" character varying(300) NOT NULL DEFAULT ''; + ALTER TABLE "SiteSettings" + ADD COLUMN IF NOT EXISTS "ImprintContent" text NOT NULL DEFAULT ''; + + ALTER TABLE "SiteSettings" + ADD COLUMN IF NOT EXISTS "ContactContent" text NOT NULL DEFAULT ''; + + ALTER TABLE "SiteSettings" + ADD COLUMN IF NOT EXISTS "SponsorsContent" text NOT NULL DEFAULT ''; + CREATE TABLE IF NOT EXISTS "RiskFlags" ( "Id" integer GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY, "SeasonId" integer NULL,