* reset category generation table and set all to short * correct migration number
6 lines
234 B
SQL
6 lines
234 B
SQL
-- 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';
|