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

26 lines
639 B

set sql_log_bin=0;
set autocommit=0;
USE kamailio;
--table: lcr_rule
ALTER TABLE lcr_rule
ADD COLUMN mt_tvalue VARCHAR(128) DEFAULT NULL AFTER request_uri;
REPLACE INTO version (`table_name`, `table_version`) VALUES ('lcr_rule','3');
--table: location
ALTER TABLE location
MODIFY contact VARCHAR(512) NOT NULL DEFAULT '';
REPLACE INTO version (`table_name`, `table_version`) VALUES ('location','9');
--table: active_watchers
ALTER TABLE active_watchers
MODIFY COLUMN reason VARCHAR(64) DEFAULT NULL;
--table: domain_attrs
ALTER TABLE domain_attrs
DROP INDEX domain_attrs_idx,
ADD INDEX domain_attrs_idx (did,name);
COMMIT;