Sign in
简柏林
/
thingskit
·
Commits
GitLab
Go to dashboard
Project
Activity
Files
Commits
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Network
Download as
Email Patches
Plain Diff
Browse Files
Commit
9ae24a22af146c4c2f0ac420f8002706dbfb9e45
Authored by
xp.Huang
2023-05-24 19:21:10 +0800
1 parent
3d1fcd9c
feat: 增加产品导入物模型的功能的更新脚本
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
application/src/main/data/upgrade/thingskit/thingsKit_1.1.0_1.1.1.sql
application/src/main/data/upgrade/thingskit/thingsKit_1.1.0_1.1.1.sql
0 → 100644
View file @
9ae24a2
1
+
--更新物模型的读写字段--
2
+
ALTER
TABLE
tk_things_model
alter
COLUMN
access_mode
type
varchar
(
2
);
3
+
COMMENT
ON
COLUMN
"public"
.
"tk_things_model"
.
"access_mode"
IS
'读写模式:"读" r "读写" rw'
;
\ No newline at end of file
...
...