Сам sql выглядит так
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `stress_referal`
-- ----------------------------
DROP TABLE IF EXISTS `stress_referal`;
CREATE TABLE `stress_referal` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`account_referer` varchar(100) NOT NULL,
`account_name` varchar(100) NOT NULL,
`charId` int(11) NOT NULL DEFAULT '0',
`char_name` varchar(30) NOT NULL,
`success` enum('0','1') NOT NULL DEFAULT '0',
`date` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
KEY `account_referer` (`account_referer`)
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of stress_referal
-- ----------------------------
INSERT INTO `stress_referal` VALUES ('1', '111111', 'pytkw111', '268492673', '1shot', '1', '2023-09-25 09:51:17');
INSERT INTO `stress_referal` VALUES ('2', '222222', 'pytkw111', '268492673', '1shot', '1', '2023-09-25 09:51:25');