From 8581c6a01faa6f58c2db0f1870ec567205390b3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kr=C3=BChlmann?= Date: Thu, 15 Jan 2026 15:07:03 +0100 Subject: [PATCH] Fix migration invalid syntax --- src/main/resources/db/migration/V5__script_asset_layer.sql | 2 +- ...e_sync_interval.sql => V6__settings_emote_sync_interval.sql} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/main/resources/db/migration/{V5__settings_emote_sync_interval.sql => V6__settings_emote_sync_interval.sql} (100%) diff --git a/src/main/resources/db/migration/V5__script_asset_layer.sql b/src/main/resources/db/migration/V5__script_asset_layer.sql index fbd5a5e..d644fef 100644 --- a/src/main/resources/db/migration/V5__script_asset_layer.sql +++ b/src/main/resources/db/migration/V5__script_asset_layer.sql @@ -1,4 +1,4 @@ -ALTER TABLE script_assets ADD COLUMN IF NOT EXISTS z_index INTEGER NOT NULL DEFAULT 1; +ALTER TABLE script_assets ADD COLUMN z_index INTEGER NOT NULL DEFAULT 1; UPDATE script_assets SET z_index = 1 diff --git a/src/main/resources/db/migration/V5__settings_emote_sync_interval.sql b/src/main/resources/db/migration/V6__settings_emote_sync_interval.sql similarity index 100% rename from src/main/resources/db/migration/V5__settings_emote_sync_interval.sql rename to src/main/resources/db/migration/V6__settings_emote_sync_interval.sql