@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
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at recaptime-dev/main 9 lines 381 B view raw
1create table {$NAMESPACE}_maniphest.maniphest_taskauxiliarystorage 2 (id int unsigned not null auto_increment primary key, 3 taskPHID varchar(64) binary not null, 4 name varchar(255) COLLATE `binary` not null, 5 value varchar(255) not null, 6 unique key (taskPHID,name), 7 dateCreated int unsigned not null, 8 dateModified int unsigned not null) 9 ENGINE = InnoDB;