From a6ce0fd7066f2badd8694a5eb3a270de6af20015 Mon Sep 17 00:00:00 2001 From: Rene Krenn Date: Wed, 13 Jun 2018 19:58:50 +0200 Subject: [PATCH] TT#38157 fix to insert IGNORE into ngcp.timezone Change-Id: I3a9200f7e6a0e093694a8eee88a9fdfd24b7d5c6 --- db_scripts/diff/15373_not_replicated.up | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db_scripts/diff/15373_not_replicated.up b/db_scripts/diff/15373_not_replicated.up index f681303d..ffaf1cfa 100644 --- a/db_scripts/diff/15373_not_replicated.up +++ b/db_scripts/diff/15373_not_replicated.up @@ -10,6 +10,6 @@ CREATE TABLE IF NOT EXISTS ngcp.timezone modified_at timestamp default current_timestamp on update current_timestamp ); -INSERT INTO ngcp.timezone (name) VALUES ('localtime'); +INSERT IGNORE INTO ngcp.timezone (name) VALUES ('localtime'); COMMIT;