Changes between Version 1 and Version 2 of WriterEditsAnExistingChapter
- Timestamp:
- 08/24/26 16:18:14 (13 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WriterEditsAnExistingChapter
v1 v2 9 9 {{{#!sql 10 10 SELECT chapter_id, chapter_number, chapter_name, title, 11 c ontent, word_count,updated_at11 chapter_content, word_count, chapter_updated_at 12 12 FROM CHAPTER 13 13 WHERE chapter_id = 1 AND story_id = 1; … … 19 19 {{{#!sql 20 20 UPDATE CHAPTER 21 SET c ontent = 'The ground trembled beneath the Crystal Mountains. Updated content here...',21 SET chapter_content = 'The ground trembled beneath the Crystal Mountains. Updated content here...', 22 22 word_count = 3500, 23 updated_at = CURRENT_TIMESTAMP23 chapter_updated_at = CURRENT_TIMESTAMP 24 24 WHERE chapter_id = 1 AND story_id = 1; 25 25 }}}
