From 19a8b4dc732b0140461119ac1034c7ab7560a6e5 Mon Sep 17 00:00:00 2001 From: Kirill Solomko Date: Fri, 1 Dec 2017 13:02:51 +0100 Subject: [PATCH] TT#25451 add ngcp.timezone table * ngcp.timzone table contains the timezone value from config.yml general.timezone Change-Id: Icbf6805bbdd0469aff863e063044994fabf9e00b --- db_scripts/diff/15373.down | 4 ++++ db_scripts/diff/15373.up | 9 +++++++++ 2 files changed, 13 insertions(+) create mode 100644 db_scripts/diff/15373.down create mode 100644 db_scripts/diff/15373.up diff --git a/db_scripts/diff/15373.down b/db_scripts/diff/15373.down new file mode 100644 index 00000000..3cf4aee7 --- /dev/null +++ b/db_scripts/diff/15373.down @@ -0,0 +1,4 @@ +USE billing; + +DROP TABLE ngcp.timezone; + diff --git a/db_scripts/diff/15373.up b/db_scripts/diff/15373.up new file mode 100644 index 00000000..6d3b58c1 --- /dev/null +++ b/db_scripts/diff/15373.up @@ -0,0 +1,9 @@ +USE billing; + +CREATE TABLE ngcp.timezone +( + id enum('1') not null primary key, + name varchar(255) not null, + created_at timestamp default current_timestamp, + modified_at timestamp default current_timestamp on update current_timestamp +);