reset category generation table and set all to short (#511)

* reset category generation table and set all to short

* correct migration number
This commit is contained in:
Arwid Thornström
2025-10-22 11:41:35 +02:00
committed by GitHub
parent 760c56a129
commit b17ae3194e
+5
View File
@@ -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';