Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dankal-data-view
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
仲光辉
dankal-data-view
Commits
1991c4b9
Commit
1991c4b9
authored
Jul 13, 2024
by
mercymodest
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:- add yoga/calender sql
parent
bf3dd311
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
2 deletions
+36
-2
线上需要同步的SQL.sql
拉伽/线上需要同步的SQL.sql
+16
-1
update.sql
电子日历/update.sql
+20
-1
No files found.
拉伽/线上需要同步的SQL.sql
View file @
1991c4b9
#
CRE
ATE
TABLE
`api_client_credentials`
#
CRE
ATE
TABLE
`api_client_credentials`
...
...
@@ -316,6 +316,21 @@ alter table user_card_change_logs
alter
table
user_card
add
audit_time
datetime
null
comment
'发起审核时间'
;
alter
table
user_card_change_logs
modify
remarks
text
null
comment
'会员卡审核备注'
;
create
index
admin_store_relation_store_uuid_index
on
admin_store_relation
(
store_uuid
);
alter
table
user_card
add
last_audit_user_card_uuid
bigint
null
comment
'上次审核会员卡uuid'
;
...
...
电子日历/update.sql
View file @
1991c4b9
alter
table
sys_user
alter
table
sys_user
...
...
@@ -38,3 +38,22 @@ alter table t_user_questionnaire
alter
table
t_user
add
phone
varchar
(
50
)
null
comment
'用户手机号'
;
alter
table
t_list
add
is_built_in
tinyint
(
1
)
default
0
null
comment
'是否内置清单 0:否 1:是(内置清单不可删除)'
;
alter
table
t_list
add
is_edited
tinyint
(
1
)
default
0
null
comment
'内建清单是否已经编辑 0:否 1:是(仅有内建清单此字段才有意义,用户自建清单不需要)'
;
alter
table
t_user_calendar_categories
modify
category_type
tinyint
(
1
)
default
0
not
null
comment
' 类别分类:0 表示事项,1 表示杂物(杂物来源于事项,如果类别为杂物类别,则类别也属于事项分类) 2:晚餐计划。'
;
alter
table
t_events
add
start_date_time
datetime
null
comment
'事项开始时间(UTC+0)'
after
is_all_day
;
alter
table
t_events
add
end_date_time
datetime
null
comment
'事项结束时间(UTC+0)'
after
start_time
;
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