You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
db-schema/db_scripts/diff/15373.up

10 lines
249 B

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