mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
e042533375
Summary: Ref T10747. This does double-writes and starts generating/writing CalendarDateTimes. This greater flexibility is necessary to support the full range of ICS-specifiable events, including "floating" events. This doesn't do anything yet. Test Plan: Created and edited events, verified sensible representations of corresponding datetimes appeared in the database. Reviewers: chad Reviewed By: chad Maniphest Tasks: T10747 Differential Revision: https://secure.phabricator.com/D16661
5 lines
201 B
SQL
5 lines
201 B
SQL
ALTER TABLE {$NAMESPACE}_calendar.calendar_event
|
|
ADD parameters LONGTEXT NOT NULL COLLATE {$COLLATE_TEXT};
|
|
|
|
UPDATE {$NAMESPACE}_calendar.calendar_event
|
|
SET parameters = '{}' WHERE parameters = '';
|