mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
2ab07ed29b
Summary: Ref T10747. Adds a bunch of stuff so we can keep track of which events we've imported from external sources. This doesn't do anything yet: you can't actually import anything. Test Plan: - Ran `bin/storage upgrade`. - Clicked "Imports", saw an empty wasteland. - Created/edited events. Reviewers: chad Reviewed By: chad Maniphest Tasks: T10747 Differential Revision: https://secure.phabricator.com/D16696
11 lines
358 B
SQL
11 lines
358 B
SQL
ALTER TABLE {$NAMESPACE}_calendar.calendar_event
|
|
ADD importAuthorPHID VARBINARY(64);
|
|
|
|
ALTER TABLE {$NAMESPACE}_calendar.calendar_event
|
|
ADD importSourcePHID VARBINARY(64);
|
|
|
|
ALTER TABLE {$NAMESPACE}_calendar.calendar_event
|
|
ADD importUIDIndex BINARY(12);
|
|
|
|
ALTER TABLE {$NAMESPACE}_calendar.calendar_event
|
|
ADD importUID LONGTEXT COLLATE {$COLLATE_TEXT};
|