mirror of https://github.com/sipwise/db-schema.git
* ngcp.timzone table contains the
timezone value from config.yml
general.timezone
Change-Id: Icbf6805bbdd0469aff863e063044994fabf9e00b
changes/83/17383/5
parent
32c4c0c5d0
commit
19a8b4dc73
@ -0,0 +1,4 @@
|
|||||||
|
USE billing;
|
||||||
|
|
||||||
|
DROP TABLE ngcp.timezone;
|
||||||
|
|
||||||
@ -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
|
||||||
|
);
|
||||||
Loading…
Reference in new issue