Files
huskies/server/migrations/20240103000000_story_content.sql
T

6 lines
283 B
SQL

-- Add content column to pipeline_items to store full story markdown
-- (front matter + body). This makes the database the sole source of
-- truth for story content, removing the dependency on .huskies/work/
-- stage directories.
ALTER TABLE pipeline_items ADD COLUMN content TEXT;