Commit c623629a by mercymodest

feat:- add sql

parent 3d039e1b
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);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment