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/15151_not_replicated.down

14 lines
292 B

use sipstats;
set sql_log_bin=0;
set autocommit=0;
REVOKE SELECT,INSERT,UPDATE ON stats.call_info FROM 'mediator'@'localhost';
ALTER TABLE stats.call_info RENAME sipstats.call_info;
DROP DATABASE stats;
GRANT SELECT,INSERT,UPDATE ON sipstats.call_info TO 'mediator'@'localhost';
commit;