Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
guns-vip
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chenjunxiong
guns-vip
Commits
599d1bf4
Commit
599d1bf4
authored
Jun 20, 2019
by
fengshuonan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更新参数数据库
parent
21b25a0d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
1 deletions
+20
-1
_sqls/guns_mysql.sql
+20
-1
No files found.
_sqls/guns_mysql.sql
View file @
599d1bf4
...
@@ -16,7 +16,7 @@ USE guns;
...
@@ -16,7 +16,7 @@ USE guns;
Target Server Version : 50724
Target Server Version : 50724
File Encoding : 65001
File Encoding : 65001
Date:
15/06/2019 18:23:18
Date:
20/06/2019 17:25:41
*/
*/
SET
NAMES
utf8mb4
;
SET
NAMES
utf8mb4
;
...
@@ -72,6 +72,25 @@ CREATE TABLE `oauth_user_info` (
...
@@ -72,6 +72,25 @@ CREATE TABLE `oauth_user_info` (
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
ROW_FORMAT
=
DYNAMIC
COMMENT
=
'第三方用户信息表'
;
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
ROW_FORMAT
=
DYNAMIC
COMMENT
=
'第三方用户信息表'
;
-- ----------------------------
-- ----------------------------
-- Table structure for sys_config
-- ----------------------------
DROP
TABLE
IF
EXISTS
`sys_config`
;
CREATE
TABLE
`sys_config`
(
`id`
bigint
(
20
)
NOT
NULL
AUTO_INCREMENT
COMMENT
'主键'
,
`name`
varchar
(
200
)
NOT
NULL
COMMENT
'名称'
,
`code`
varchar
(
200
)
NOT
NULL
COMMENT
'属性编码标识'
,
`dict_flag`
char
(
1
)
NOT
NULL
COMMENT
'是否是字典中的值'
,
`dict_type_code`
varchar
(
200
)
DEFAULT
NULL
COMMENT
'字典类型的编码'
,
`value`
varchar
(
200
)
NOT
NULL
COMMENT
'属性值,如果是字典中的类型,则为dict的code'
,
`remark`
varchar
(
200
)
DEFAULT
NULL
COMMENT
'备注'
,
`create_time`
datetime
DEFAULT
NULL
COMMENT
'创建时间'
,
`create_user`
bigint
(
20
)
DEFAULT
NULL
COMMENT
'创建人'
,
`update_time`
datetime
DEFAULT
NULL
COMMENT
'更新时间'
,
`update_user`
bigint
(
20
)
DEFAULT
NULL
COMMENT
'更新人'
,
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
12
DEFAULT
CHARSET
=
utf8
COMMENT
=
'参数配置'
;
-- ----------------------------
-- Table structure for sys_dept
-- Table structure for sys_dept
-- ----------------------------
-- ----------------------------
DROP
TABLE
IF
EXISTS
`sys_dept`
;
DROP
TABLE
IF
EXISTS
`sys_dept`
;
...
...
Write
Preview
Markdown
is supported
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