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.
 
 
 
 
 
 

4 lines
235 B

#sylvieg
alter table users_groups drop primary key;
alter table users_groups add column id int(11) NOT NULL auto_increment first, add primary key (id), auto_increment = 1;
alter table users_groups add unique `groupName` (`groupName`);