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

11 lines
448 B

use sipstats;
alter ignore table messages remove partitioning;
alter table messages partition by range (id) (partition pmax values less than maxvalue);
alter ignore table message_packets remove partitioning;
alter table message_packets partition by range (message) (partition pmax values less than maxvalue);
alter ignore table packets remove partitioning;
alter table packets partition by range (id) (partition pmax values less than maxvalue);