From 7de204541971bcf1eddd8d389cb11d2b46d3fd4c Mon Sep 17 00:00:00 2001 From: wangqing <408564126@qq.com> Date: Thu, 1 Aug 2024 17:31:58 +0800 Subject: [PATCH] =?UTF-8?q?release:=E4=BF=AE=E6=AD=A3=20tb=5Ftask=5Fpoint?= =?UTF-8?q?=20=20sql?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- luoo_user/src/main/resources/sql/20240719.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/luoo_user/src/main/resources/sql/20240719.sql b/luoo_user/src/main/resources/sql/20240719.sql index 4a593af..bb12804 100644 --- a/luoo_user/src/main/resources/sql/20240719.sql +++ b/luoo_user/src/main/resources/sql/20240719.sql @@ -52,7 +52,7 @@ create table tb_task_point update_time datetime null comment '修改时间', create_user varchar(20) null comment '创建人', update_user varchar(20) null comment '修改人', - valid tinyint 1 comment '是否生效 1-生效 2-不生效' + valid tinyint default 1 null comment '是否生效 1-生效 2-不生效' ) comment '任务积分配置表'; INSERT INTO `tb_task_point` (`id`, `score`, `type`, `description`, `create_time`, `update_time`, `create_user`, `update_user`, `valid`) VALUES ('1', 1, 1, '新手欢迎奖励', '2024-07-31 14:23:58', '2024-07-31 14:23:58', NULL, NULL, 1);