-- Publish every existing changelog to the public feed
-- Adjust table prefix if your environment does not use `wpjy_`.

UPDATE wpjy_changelogs
SET visivel_cliente = 1,
    status = 'published',
    updated_at = NOW()
WHERE COALESCE(visivel_cliente, 0) <> 1
   OR COALESCE(status, '') <> 'published';
