I am trying to create an archive table in MariaDB using dbForge and I'm getting the following error when I save the table.
Unexpected Symbol 'NONE'
dbForge automatically changes the following line from:
PRIMARY KEY (ArchiveSupplierID)
To
PRIMARY KEY USING NONE (ArchiveSupplierID)
Below is my table definition
CREATE TABLE supplierarchives (
ArchiveSupplierID INT(11) NOT NULL AUTO_INCREMENT,
PRIMARY KEY USING NONE (ArchiveSupplierID)
)
ENGINE = ARCHIVE
AUTO_INCREMENT = 31888
AVG_ROW_LENGTH = 148
CHARACTER SET utf8
COLLATE utf8_general_ci;
Thanks,