This commit is contained in:
777
2026-01-14 17:31:25 +08:00
parent 7fdf6eefad
commit 235059c96a
5 changed files with 53 additions and 19 deletions

View File

@@ -6,7 +6,7 @@ CREATE TABLE `cai_user_login`
`mobile` varchar(100) NOT NULL COMMENT '账户明细说明',
`password` varchar(100) NOT NULL COMMENT '账户明细说明',
`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`update_time` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间',
`update_time` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间',
PRIMARY KEY (`id`) USING BTREE,
INDEX `user_id` (`user_id`) USING BTREE
) ENGINE = InnoDB
@@ -14,3 +14,12 @@ CREATE TABLE `cai_user_login`
DEFAULT CHARSET = utf8mb4
COLLATE = utf8mb4_general_ci
ROW_FORMAT = DYNAMIC COMMENT ='123记录';
INSERT INTO `cai_prize_info` (`id`, `prize_name`, `prize_desc`, `prize_img`, `win_probability`, `guarantee_draws`,
`min_win_draws`, `stock`, `prize_type`, `prize_price`, `auto_give`, `create_time`,
`update_time`)
VALUES (1, '谢谢惠顾', '谢谢惠顾', 'test/2026/01/06/0d6bafa0bb1841eabd745f0bf495640c.png', 0.0000, 0, 0, 0, 1, 0, 1,
'2026-01-06 15:33:11', '2026-01-14 16:53:47');