Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
xiaofang li
MeterSphere
Commits
66940311
Commit
66940311
authored
3 years ago
by
AnAngle
Browse files
Options
Download
Email Patches
Plain Diff
fix: sql错误
parent
9e84f57c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
backend/src/main/resources/db/migration/V95__v1.13_release.sql
+4
-4
...nd/src/main/resources/db/migration/V95__v1.13_release.sql
with
4 additions
and
4 deletions
+4
-4
backend/src/main/resources/db/migration/V95__v1.13_release.sql
+
4
-
4
View file @
66940311
...
...
@@ -66,13 +66,13 @@ create table if not exists custom_function
COLLATE
utf8mb4_general_ci
;
CREATE
table
if
not
exists
`minder_
config
`
(
CREATE
table
if
not
exists
`minder_
extra_node
`
(
`id`
varchar
(
50
)
NOT
NULL
,
`resource_id`
varchar
(
50
)
NOT
NULL
COMMENT
'所属的项目或测试计划'
,
`parent_id`
varchar
(
50
)
NOT
NULL
COMMENT
'父节点的id'
,
`group_id`
varchar
(
50
)
NOT
NULL
COMMENT
'所属的项目'
,
`type`
varchar
(
30
)
NOT
NULL
COMMENT
'类型,如:用例编辑脑图'
,
`
extra_node
`
longtext
COMMENT
'存储脑图节点额外信息'
,
`
node_data
`
longtext
COMMENT
'存储脑图节点额外信息'
,
PRIMARY
KEY
(
`id`
)
index
(
id
)
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8mb4
COLLATE
utf8mb4_general_ci
;
This diff is collapsed.
Click to expand it.
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
Menu
Projects
Groups
Snippets
Help