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

11 lines
225 B

use sipstats;
set autocommit=0;
alter table mark drop primary key;
alter table mark add column id int unsigned not null auto_increment primary key first;
alter table mark add key name_idx (name);
commit;
set autocommit=1;