@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
at recaptime-dev/main 19 lines 617 B view raw
1ALTER TABLE {$NAMESPACE}_differential.differential_revision 2 ADD mailKey VARCHAR(40) binary NOT NULL; 3 4ALTER TABLE {$NAMESPACE}_maniphest.maniphest_task 5 ADD mailKey VARCHAR(40) binary NOT NULL; 6 7CREATE 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;