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_not_replicated.up

16 lines
351 B

set sql_log_bin=0;
set autocommit=0;
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
);
INSERT INTO ngcp.timezone (name) VALUES ('localtime');
COMMIT;