db: 更改 MySQL 脚本

#Comment
SQL 日志字段更改为 Text 类型
This commit is contained in:
Argo Zhang 2020-04-18 16:23:46 +08:00
parent 842827ad22
commit 004e591076
No known key found for this signature in database
GPG Key ID: 152E398953DDF19F
1 changed files with 1 additions and 1 deletions

View File

@ -189,6 +189,6 @@ CREATE TABLE Traces(
CREATE TABLE DBLogs (
ID INTEGER PRIMARY KEY Auto_increment,
UserName VARCHAR (50) NULL,
`SQL` VARCHAR (2000) NOT NULL,
`SQL` Text NOT NULL,
LogTime DATETIME NOT NULL
);