From 1d18a2a37031293a02be99bdc810fa20268dfb67 Mon Sep 17 00:00:00 2001 From: Martin Carlsson Date: Thu, 27 Aug 2020 12:43:14 +0200 Subject: [PATCH] P5-5651 append /us to USA article slugs --- migrations/000.230.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 migrations/000.230.sql diff --git a/migrations/000.230.sql b/migrations/000.230.sql new file mode 100644 index 0000000..4b402cf --- /dev/null +++ b/migrations/000.230.sql @@ -0,0 +1,3 @@ +-- prepend /us to USA article slugs + +update article_content set slug = '/us' || slug where market_id = 11;