From a4e5ff3bb71f59f8512c448bc1be3f73bc2b5c02 Mon Sep 17 00:00:00 2001 From: Kirill Solomko Date: Mon, 18 Jun 2018 15:30:25 +0200 Subject: [PATCH] Revert "TT#38157 fix to insert IGNORE into ngcp.timezone" This reverts commit a6ce0fd7066f2badd8694a5eb3a270de6af20015. Change-Id: I79b35147f8163f6b9078eb734b30a97e077b1586 --- 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 ffaf1cfa..f681303d 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 IGNORE INTO ngcp.timezone (name) VALUES ('localtime'); +INSERT INTO ngcp.timezone (name) VALUES ('localtime'); COMMIT;