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

16 lines
348 B

set sql_log_bin=0;
set autocommit=0;
USE ngcp;
CREATE TABLE tzinfo_version
(
id enum('1') not null primary key,
version varchar(255) not null,
created_at timestamp default current_timestamp,
modified_at timestamp default current_timestamp on update current_timestamp
);
INSERT INTO tzinfo_version (version) VALUES ('0');
COMMIT;