PostgreSQL

pgAdmin クエリ実行

テーブルposts.translationsのcontent内のurlを置換え

UPDATE public.posts_translations
SET content = REPLACE(content, 'http://localhost:8055', 'https://api.ficusonline.com')
WHERE content LIKE '%http://localhost:8055%';