Commit b24acec4 authored by xiandafu's avatar xiandafu
Browse files

mysql text

parent 15afb690
......@@ -33,7 +33,7 @@ beetlsql.dataSource.dbStyle=org.beetl.sql.core.db.MySqlStyle
beetlsql.basePackage=com
app.name=SpringBoot-Plus
logging.pattern.console=%-4relative [%thread] %-5level %logger{256} %M %L - %msg%n
spring.devtools.restart.exclude=templates/**
spring.devtools.restart.exclude=static/**,templates/**
#文档预览服务的调用地址,参考https://gitee.com/kekingcn/file-online-preview 安装,没有如下配置无法使用预览功能
file.previewURL=http://localhost:8012/onlinePreview
......
......@@ -59,7 +59,7 @@ CREATE TABLE `core_audit` (
`IP` varchar(45) DEFAULT NULL,
`CREATE_TIME` datetime(6) DEFAULT NULL,
`SUCCESS` tinyint(4) DEFAULT NULL,
`MESSAGE` text,
`MESSAGE` varchar(250),
`ORG_ID` varchar(45) DEFAULT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8;
......@@ -176,10 +176,10 @@ DROP TABLE IF EXISTS `core_function`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `core_function` (
`ID` int(20) NOT NULL AUTO_INCREMENT,
`CODE` text,
`CODE` varchar(250),
`NAME` varchar(16) DEFAULT NULL,
`CREATE_TIME` datetime(6) DEFAULT NULL,
`ACCESS_URL` text,
`ACCESS_URL` varchar(250),
`PARENT_ID` int(65) DEFAULT NULL,
`TYPE` varchar(4) DEFAULT NULL,
PRIMARY KEY (`ID`)
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment