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
Litemall
Commits
85aa4cab
"git@ustchcs.com:gujinli1118/springboot-plus.git" did not exist on "5e1f3c986eb28f0e8e8c812536af403a07fda450"
Commit
85aa4cab
authored
Jan 09, 2020
by
wtune
Committed by
linlinjava
Jan 09, 2020
Browse files
add index on litemall_storage.key (#328)
parent
2d4b262b
Changes
1
Hide whitespace changes
Inline
Side-by-side
litemall-db/sql/litemall_table.sql
View file @
85aa4cab
...
@@ -676,7 +676,8 @@ CREATE TABLE `litemall_storage` (
...
@@ -676,7 +676,8 @@ CREATE TABLE `litemall_storage` (
`add_time`
datetime
DEFAULT
NULL
COMMENT
'创建时间'
,
`add_time`
datetime
DEFAULT
NULL
COMMENT
'创建时间'
,
`update_time`
datetime
DEFAULT
NULL
COMMENT
'更新时间'
,
`update_time`
datetime
DEFAULT
NULL
COMMENT
'更新时间'
,
`deleted`
tinyint
(
1
)
DEFAULT
'0'
COMMENT
'逻辑删除'
,
`deleted`
tinyint
(
1
)
DEFAULT
'0'
COMMENT
'逻辑删除'
,
PRIMARY
KEY
(
`id`
)
PRIMARY
KEY
(
`id`
),
KEY
`key`
(
`key`
)
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8mb4
COMMENT
=
'文件存储表'
;
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8mb4
COMMENT
=
'文件存储表'
;
/*!40101 SET character_set_client = @saved_cs_client */
;
/*!40101 SET character_set_client = @saved_cs_client */
;
...
...
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