From e32c6de5af8c7b9178a43987e9537c9ec05a4cd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arwid=20Thornstr=C3=B6m?= Date: Tue, 16 Dec 2025 09:01:56 +0100 Subject: [PATCH] Add ai context field the category_texts table (#522) * Add ai context field the category_texts table * moved file to correct number --- migrations/000.592.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 migrations/000.592.sql diff --git a/migrations/000.592.sql b/migrations/000.592.sql new file mode 100644 index 0000000..b2d46d2 --- /dev/null +++ b/migrations/000.592.sql @@ -0,0 +1,5 @@ +-- Add a new column to store the extra context for generating texts +ALTER TABLE category_texts ADD COLUMN wallpaper_ai_context TEXT; +ALTER TABLE category_texts ADD COLUMN design_wallpaper_ai_context TEXT; +ALTER TABLE category_texts ADD COLUMN canvas_ai_context TEXT; +ALTER TABLE category_texts ADD COLUMN poster_ai_context TEXT;