· 6 years ago · Sep 27, 2019, 10:28 AM
1SET NAMES utf8mb4;
2SET FOREIGN_KEY_CHECKS = 0;
3
4-- ----------------------------
5-- Table structure for tombola
6-- ----------------------------
7DROP TABLE IF EXISTS `tombola`;
8CREATE TABLE `tombola` (
9 `vnum` int(11) UNSIGNED NOT NULL DEFAULT 0,
10 `count` int(4) UNSIGNED NOT NULL DEFAULT 0,
11 `percent` tinyint(3) UNSIGNED NOT NULL DEFAULT 0
12) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_unicode_ci ROW_FORMAT = Compact;
13
14SET FOREIGN_KEY_CHECKS = 1;