· 9 years ago · Dec 14, 2016, 04:40 PM
1# Drop the table
2DROP TABLE IF EXISTS product_variant;
3
4# Recreate the table
5product_variant (Auto_ID
6CREATE TABLE product_variant (
7 Auto_ID INT(5) NOT NULL AUTO_INCREMENT,
8 ...
9 PRIMARY KEY (Auto_ID)
10);
11
12# insert your data
13INSERT INTO product_variant ...