Changes between Version 1 and Version 2 of WriterEditsAnExistingChapter


Ignore:
Timestamp:
08/24/26 16:18:14 (13 days ago)
Author:
211099
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WriterEditsAnExistingChapter

    v1 v2  
    99{{{#!sql
    1010SELECT chapter_id, chapter_number, chapter_name, title,
    11        content, word_count, updated_at
     11       chapter_content, word_count, chapter_updated_at
    1212FROM CHAPTER
    1313WHERE chapter_id = 1 AND story_id = 1;
     
    1919{{{#!sql
    2020UPDATE CHAPTER
    21 SET content = 'The ground trembled beneath the Crystal Mountains. Updated content here...',
     21SET chapter_content = 'The ground trembled beneath the Crystal Mountains. Updated content here...',
    2222    word_count = 3500,
    23     updated_at = CURRENT_TIMESTAMP
     23    chapter_updated_at = CURRENT_TIMESTAMP
    2424WHERE chapter_id = 1 AND story_id = 1;
    2525}}}