I have updated the database, but it is still a stacking pillars script, not a Vaziper
try this
DROP TABLE IF EXISTS `sp_purchase_manager`;
CREATE TABLE IF NOT EXISTS `sp_purchase_manager` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
`ids` text DEFAULT NULL,
`item_id` text DEFAULT NULL,
`purchase_code` text DEFAULT NULL,
`version` text DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4;
INSERT INTO `sp_purchase_manager` (`id`, `ids`, `item_id`, `purchase_code`, `version`) VALUES
(1, 'aa793be748d69d96673862dea72ec699', '32290038', 'nulled', '7.2.2'),
COMMIT;