Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
Springboot Plus
Commits
b24acec4
Commit
b24acec4
authored
Nov 07, 2018
by
xiandafu
Browse files
mysql text
parent
15afb690
Changes
2
Hide whitespace changes
Inline
Side-by-side
admin-console/src/main/resources/application.properties
View file @
b24acec4
...
...
@@ -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
...
...
doc/starter-mysql.sql
View file @
b24acec4
...
...
@@ -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`
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment