From b17ae3194ee599ca45445b37340f448b450d9afb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arwid=20Thornstr=C3=B6m?= Date: Wed, 22 Oct 2025 11:41:35 +0200 Subject: [PATCH] reset category generation table and set all to short (#511) * reset category generation table and set all to short * correct migration number --- migrations/000.583.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 migrations/000.583.sql diff --git a/migrations/000.583.sql b/migrations/000.583.sql new file mode 100644 index 0000000..f30f457 --- /dev/null +++ b/migrations/000.583.sql @@ -0,0 +1,5 @@ +-- Truncate the category_texts_updated table +TRUNCATE TABLE category_texts_updated; + +-- In the category_texts table, when text_length is long set it to short +UPDATE category_texts SET text_length = 'short' WHERE text_length = 'long';