No products in the cart.
Access our premium support and let us know your problems, we will help you solve them.
I simply removed the COLLATE
and other attributes and left only till ENGINE
.
like the following
FROM:
ENGINE=InnoDB AUTO_INCREMENT=429 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci
TO:
ENGINE=InnoDB;
and it worked for me just fine.