· 6 years ago · Dec 14, 2019, 08:48 PM
1SET FOREIGN_KEY_CHECKS=0;
2-- ----------------------------
3-- Table structure for `lottery`
4-- ----------------------------
5DROP TABLE IF EXISTS `lottery`;
6CREATE TABLE `lottery` (
7 `id` tinyint(1) NOT NULL DEFAULT '1',
8 `jackpot` int(11) NOT NULL DEFAULT '0',
9 PRIMARY KEY (`id`)
10) ENGINE=InnoDB DEFAULT CHARSET=latin1;
11-- ----------------------------
12-- Records of lottery
13-- ----------------------------
14INSERT INTO `lottery` VALUES ('1', '0');