From fbaade5c50d58f8709fead3a29d49d9da43f5eb4 Mon Sep 17 00:00:00 2001 From: Martin Carlsson Date: Thu, 17 Sep 2020 13:26:32 +0200 Subject: [PATCH] P5-5751 prepend /int to global article slugs --- migrations/000.236.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 migrations/000.236.sql diff --git a/migrations/000.236.sql b/migrations/000.236.sql new file mode 100644 index 0000000..bd7e5f0 --- /dev/null +++ b/migrations/000.236.sql @@ -0,0 +1,3 @@ +-- P5-5751: prepend /int to global article slugs + +update article_content set slug = '/int' || slug where market_id = 7;