Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/resources/sql/patches/036.mailkey.sql
12250 views
1
ALTER TABLE {$NAMESPACE}_differential.differential_revision
2
ADD mailKey VARCHAR(40) binary NOT NULL;
3
4
ALTER TABLE {$NAMESPACE}_maniphest.maniphest_task
5
ADD mailKey VARCHAR(40) binary NOT NULL;
6
7
CREATE TABLE {$NAMESPACE}_metamta.metamta_receivedmail (
8
id int unsigned not null primary key auto_increment,
9
headers longblob not null,
10
bodies longblob not null,
11
attachments longblob not null,
12
relatedPHID varchar(64) binary,
13
key(relatedPHID),
14
authorPHID varchar(64) binary,
15
key(authorPHID),
16
message longblob,
17
dateCreated int unsigned not null,
18
dateModified int unsigned not null
19
) engine=innodb;
20
21