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

23 lines
649 B

#only DDL stmts with implicit commits
USE accounting;
DROP TRIGGER IF EXISTS events_cascade_update_trig;
DROP TRIGGER IF EXISTS events_cascade_delete_trig;
DROP TRIGGER IF EXISTS events_relation_rest_cascade_delete_trig;
DROP TRIGGER IF EXISTS events_tag_rest_cascade_delete_trig;
REVOKE SELECT ON events_relation FROM 'exporter'@'localhost';
REVOKE SELECT ON events_relation_data FROM 'exporter'@'localhost';
REVOKE SELECT ON events_tag FROM 'exporter'@'localhost';
REVOKE SELECT ON events_tag_data FROM 'exporter'@'localhost';
DROP TABLE events_relation_data;
DROP TABLE events_relation;
DROP TABLE events_tag_data;
DROP TABLE events_tag;