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 +);