From 689de6c5e21a881164d458e82d6aeb46be32cd2f Mon Sep 17 00:00:00 2001
From: 648540858 <18010473990@163.com>
Date: 星期一, 09 八月 2021 16:53:41 +0800
Subject: [PATCH] 添加自定义banner
---
sql/mysql.sql | 17 ++++++++++++++++-
1 files changed, 16 insertions(+), 1 deletions(-)
diff --git a/sql/mysql.sql b/sql/mysql.sql
index e654e98..9a41b82 100644
--- a/sql/mysql.sql
+++ b/sql/mysql.sql
@@ -74,7 +74,19 @@
alarmType varchar(50)
);
-
+create table log
+(
+ id int auto_increment
+ primary key,
+ name varchar(50) not null,
+ type varchar(50) not null,
+ uri varchar(200) not null,
+ address varchar(50) not null,
+ result varchar(50) not null,
+ timing bigint not null,
+ username varchar(50) not null,
+ createTime varchar(50) not null
+);
create table device_mobile_position
(
@@ -219,5 +231,8 @@
update_time varchar(50) not null
);
+create unique index user_username_uindex
+ on user (username);
+
insert into user (username, password, roleId, create_time, update_time) values ('admin', '21232f297a57a5a743894a0e4a801fc3', '0', '2021-04-13 14:14:57', '2021-04-13 14:14:57');
--
Gitblit v1.8.0