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

21 lines
530 B

set sql_log_bin=0;
set autocommit=0;
START TRANSACTION;
USE kamailio;
-- table: active_watchers
ALTER TABLE active_watchers
ADD COLUMN flags INT(11) NOT NULL DEFAULT '0',
ADD COLUMN user_agent VARCHAR(255) NOT NULL;
REPLACE INTO version (`table_name`, `table_version`) VALUES ('active_watchers','12');
-- table: trusted
ALTER TABLE trusted
ADD COLUMN priority INT(11) NOT NULL DEFAULT '0',
ADD COLUMN ruri_pattern VARCHAR(64) NULL;
REPLACE INTO version (`table_name`, `table_version`) VALUES ('trusted','6');
COMMIT;