mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-09 16:32:39 +01:00
09775279a9
Summary: Ref T10747. When we import a ".ics" file, represent any attendees as simple external references. For consistency with other areas of the product, I've avoided disclosing email addresses. We'll try to get a real name if we can. (We store addresses and could expose or use them later, or do some kind of masking junk like "epr...ley@g...l.com" which is utterly impossible to figure out.) Test Plan: {F1888367} Reviewers: chad Reviewed By: chad Maniphest Tasks: T10747 Differential Revision: https://secure.phabricator.com/D16759
12 lines
528 B
SQL
12 lines
528 B
SQL
CREATE TABLE {$NAMESPACE}_calendar.calendar_externalinvitee (
|
|
id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
|
phid VARBINARY(64) NOT NULL,
|
|
name LONGTEXT NOT NULL COLLATE {$COLLATE_TEXT},
|
|
nameIndex BINARY(12) NOT NULL,
|
|
uri LONGTEXT NOT NULL COLLATE {$COLLATE_TEXT},
|
|
parameters LONGTEXT NOT NULL COLLATE {$COLLATE_TEXT},
|
|
sourcePHID VARBINARY(64) NOT NULL,
|
|
dateCreated INT UNSIGNED NOT NULL,
|
|
dateModified INT UNSIGNED NOT NULL,
|
|
UNIQUE KEY `key_name` (`nameIndex`)
|
|
) ENGINE=InnoDB, COLLATE {$COLLATE_TEXT};
|