From 8db5d290c2893650339707ca1499a508ddade4b5 Mon Sep 17 00:00:00 2001 From: tanghc Date: Mon, 27 May 2019 14:51:53 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=9F=E4=B8=80=E5=AD=97=E6=AE=B5=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sop.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sop.sql b/sop.sql index d0ff89d1..59814eb8 100644 --- a/sop.sql +++ b/sop.sql @@ -20,7 +20,7 @@ CREATE TABLE `admin_user_info` ( `password` varchar(128) NOT NULL DEFAULT '' COMMENT '密码', `status` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT '状态,1:启用,2:禁用', `gmt_create` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, - `gmt_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + `gmt_modified` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `uk_username` (`username`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='后台用户表';