Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
ioc_sixiang_license
Project
Project
Details
Activity
Releases
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zengtianlai3
ioc_sixiang_license
Commits
c43d4c1f
Commit
c43d4c1f
authored
Jan 30, 2023
by
AfirSraftGarrier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加权限和用户权限表
parent
04dee544
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
3 deletions
+33
-3
update.sql
license/doc/update.sql
+33
-3
No files found.
license/doc/update.sql
View file @
c43d4c1f
#
-------------------- 平台应用相关,以pms开头 --------------------
-------------------- 平台应用相关,以pms开头 --------------------
DROP
TABLE
IF
EXISTS
`pms_use_log`
;
DROP
TABLE
IF
EXISTS
`pms_use_log`
;
CREATE
TABLE
`pms_use_log`
CREATE
TABLE
`pms_use_log`
(
(
...
@@ -23,7 +23,37 @@ ALTER TABLE `device`
...
@@ -23,7 +23,37 @@ ALTER TABLE `device`
ALTER
TABLE
`device`
ALTER
TABLE
`device`
ADD
COLUMN
`sn_bind`
varchar
(
30
)
NULL
DEFAULT
NULL
COMMENT
'绑定的SN'
AFTER
`status`
;
ADD
COLUMN
`sn_bind`
varchar
(
30
)
NULL
DEFAULT
NULL
COMMENT
'绑定的SN'
AFTER
`status`
;
#
-------------------- 2023年开始修改 --------------------
-------------------- 2023年开始修改 --------------------
ALTER
TABLE
`user`
ALTER
TABLE
`user`
ADD
COLUMN
`notify`
varchar
(
50
)
NULL
DEFAULT
NULL
COMMENT
'报警的邮箱,注册的时候用户名是邮箱则这里自动填那个邮箱,可以修改'
AFTER
`company`
;
ADD
COLUMN
`notify`
varchar
(
50
)
NULL
DEFAULT
NULL
COMMENT
'报警的邮箱,注册的时候用户名是邮箱则这里自动填那个邮箱,可以修改'
AFTER
`company`
;
\ No newline at end of file
CREATE
TABLE
`permission`
(
`id`
int
(
10
)
NOT
NULL
AUTO_INCREMENT
,
`desc`
varchar
(
50
)
DEFAULT
NULL
COMMENT
'权限说明'
,
`create_time`
datetime
DEFAULT
NULL
COMMENT
'创建时间'
,
`update_time`
datetime
DEFAULT
NULL
COMMENT
'更新时间'
,
`deleted`
int
(
1
)
DEFAULT
'0'
COMMENT
'逻辑删除标识 1:删除,0:未删除'
,
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
0
DEFAULT
CHARSET
=
utf8
COMMENT
=
'权限表'
;
CREATE
TABLE
`user_permission`
(
`id`
int
(
10
)
NOT
NULL
AUTO_INCREMENT
,
`permission`
int
(
10
)
NOT
NULL
COMMENT
'权限标识'
,
`user`
int
(
11
)
NOT
NULL
COMMENT
'用户标识'
,
`create_time`
datetime
DEFAULT
NULL
COMMENT
'创建时间'
,
`update_time`
datetime
DEFAULT
NULL
COMMENT
'更新时间'
,
`deleted`
int
(
1
)
DEFAULT
'0'
COMMENT
'逻辑删除标识 1:删除,0:未删除'
,
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
0
DEFAULT
CHARSET
=
utf8
COMMENT
=
'用户权限表'
;
--添加权限--
INSERT
INTO
`permission`
(
`id`
,
`desc`
,
`create_time`
,
`update_time`
,
`deleted`
)
VALUES
(
1
,
'邀请注册'
,
NULL
,
NULL
,
0
);
INSERT
INTO
`permission`
(
`id`
,
`desc`
,
`create_time`
,
`update_time`
,
`deleted`
)
VALUES
(
2
,
'删除用户'
,
NULL
,
NULL
,
0
);
INSERT
INTO
`permission`
(
`id`
,
`desc`
,
`create_time`
,
`update_time`
,
`deleted`
)
VALUES
(
3
,
'应用管理'
,
NULL
,
NULL
,
0
);
INSERT
INTO
`permission`
(
`id`
,
`desc`
,
`create_time`
,
`update_time`
,
`deleted`
)
VALUES
(
4
,
'设备管理'
,
NULL
,
NULL
,
0
);
INSERT
INTO
`permission`
(
`id`
,
`desc`
,
`create_time`
,
`update_time`
,
`deleted`
)
VALUES
(
5
,
'运维管理'
,
NULL
,
NULL
,
0
);
INSERT
INTO
`permission`
(
`id`
,
`desc`
,
`create_time`
,
`update_time`
,
`deleted`
)
VALUES
(
6
,
'日志管理'
,
NULL
,
NULL
,
0
);
INSERT
INTO
`permission`
(
`id`
,
`desc`
,
`create_time`
,
`update_time`
,
`deleted`
)
VALUES
(
7
,
'安全报警'
,
NULL
,
NULL
,
0
);
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