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.down

13 lines
273 B

use sipstats;
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;