Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
smart_gov_platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
smart_gov_platform
Commits
d0625552
Commit
d0625552
authored
Aug 29, 2023
by
廖旭伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
用户常用模块收藏功能
parent
cf2cb6db
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
1 deletion
+14
-1
portal-manager/db/add.sql
portal-manager/db/add.sql
+14
-1
No files found.
portal-manager/db/add.sql
View file @
d0625552
...
...
@@ -40,4 +40,17 @@ CREATE TABLE `mortals_xhx_user_pwd_record` (
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
COMMENT
=
'用户密码修改记录'
;
UPDATE
mortals_xhx_user
SET
lastUpdatePwdTime
=
NOW
();
\ No newline at end of file
UPDATE
mortals_xhx_user
SET
lastUpdatePwdTime
=
NOW
();
-- ----------------------------
2023
-
08
-
29
-- ----------------------------
DROP
TABLE
IF
EXISTS
`mortals_xhx_user_model_collect`
;
CREATE
TABLE
`mortals_xhx_user_model_collect`
(
`id`
bigint
(
20
)
NOT
NULL
AUTO_INCREMENT
COMMENT
'主键,自增长'
,
`userId`
bigint
(
20
)
DEFAULT
NULL
COMMENT
'用户ID,主键,自增长'
,
`realName`
varchar
(
64
)
DEFAULT
NULL
COMMENT
'登录名'
,
`modelIds`
varchar
(
128
)
DEFAULT
NULL
COMMENT
'收藏模块'
,
`createTime`
datetime
DEFAULT
NULL
COMMENT
'创建时间'
,
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
COMMENT
=
'用户模块收藏'
;
\ No newline at end of file
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