church-api/force_update_specific.sql
Benjamin Slingo 0c06e159bb Initial commit: Church API Rust implementation
Complete church management system with bulletin management, media processing, live streaming integration, and web interface. Includes authentication, email notifications, database migrations, and comprehensive test suite.
2025-08-19 20:56:41 -04:00

13 lines
442 B
SQL

-- Force update the specific bulletin with clean content and new timestamp
UPDATE bulletins
SET
scripture_reading = 'For as many of you as have been baptized into Christ have put on Christ. Galatians 3:27 KJV',
updated_at = NOW()
WHERE id = '192730b5-c11c-4513-a37d-2a8b320136a4';
-- Verify the update
SELECT id, title,
scripture_reading,
updated_at
FROM bulletins
WHERE id = '192730b5-c11c-4513-a37d-2a8b320136a4';