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
c623629a
Commit
c623629a
authored
Nov 16, 2024
by
mercymodest
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:- add sql
parent
3d039e1b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
1 deletion
+21
-1
2024-11-07-update.sql
电子日历/2024-11-07-update.sql
+21
-1
No files found.
电子日历/2024-11-07-update.sql
View file @
c623629a
alter
table
t_events
alter
table
t_events
...
...
@@ -139,3 +139,23 @@ alter table t_events
alter
table
t_events
add
sync_calendar_id
varchar
(
300
)
null
comment
'第三方日历日历ID(Google Calendar/Outlook Calendar)'
;
alter
table
t_events
modify
sync_calendar_id
varchar
(
500
)
null
comment
'第三方日历日历ID(Google Calendar/Outlook Calendar)'
;
alter
table
t_events
add
recurring_event_id
varchar
(
500
)
null
comment
'Google Calendar recurringEventId'
;
alter
table
t_events
add
i_cal_uid
varchar
(
500
)
null
comment
'Google Calendar iCalUID RFC5545 中定义的事件唯一标识符。它用于在日历系统中唯一标识事件,并且在通过import方法导入事件时必须提供。 请注意,iCalUID 和 id 并不相同,在创建事件时应仅提供其中一个。它们在语义上的一个区别在于,在周期性事件中,一个事件的所有出现都具有不同的 id,而它们都共享相同的 iCalUID。如需使用其 iCalUID 检索事件,请使用 iCalUID 参数调用 events.list 方法。如需使用事件的 id 检索事件,请调用 events.get 方法。'
;
create
index
idx_sync_calendar_id
on
t_events
(
sync_calendar_id
);
alter
table
t_events
add
sync_third_event_id
varchar
(
500
)
null
comment
'第三方日历事项ID'
;
create
index
idx_sync_third_event_id
on
t_events
(
sync_third_event_id
);
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