01-06-2023, 06:02 AM
This is the Cash Server fixed : 2
If you have a segmentation fault put this in your sql (_auth):
CREATE TABLE IF NOT EXISTS `t_lottery` (
`a_index` int(10) unsigned NOT NULL AUTO_INCREMENT,
`a_user_index` int(10) unsigned DEFAULT '0',
`a_week_num` int(3) unsigned DEFAULT '0',
`a_purchase_date` varchar(100) DEFAULT '0000-00-00 00:00:00',
`a_ip` varchar(20) DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`a_index`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `t_lottery_winner` (
`a_index` int(10) unsigned NOT NULL AUTO_INCREMENT,
`a_week_num` int(10) unsigned NOT NULL DEFAULT '0',
`a_user_index` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`a_index`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

