* Add ai context field the category_texts table * moved file to correct number
6 lines
329 B
SQL
6 lines
329 B
SQL
-- 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;
|