From eaecce6eb996a4a9c33cd6e42120ec69e6235ed5 Mon Sep 17 00:00:00 2001 From: Martin Carlsson Date: Tue, 4 Aug 2020 12:30:36 +0200 Subject: [PATCH] P5-5503 add italy market --- migrations/000.225.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 migrations/000.225.sql diff --git a/migrations/000.225.sql b/migrations/000.225.sql new file mode 100644 index 0000000..c902780 --- /dev/null +++ b/migrations/000.225.sql @@ -0,0 +1,8 @@ +-- P5-5503: add italy market + +-- fix so its possible to save category texts +alter table category_texts ALTER COLUMN name DROP not null; + +insert into locales (value, esales_locale) values ('it_IT', 'it_IT'); + +insert into markets (name, locale_id) values ('IT', 15);