@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 10 lines 358 B view raw
1CREATE TABLE {$NAMESPACE}_xhpast.phpast_parsetree ( 2 `id` INT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT, 3 `authorPHID` VARBINARY(64) DEFAULT NULL, 4 `input` LONGTEXT NOT NULL, 5 `error` LONGTEXT DEFAULT NULL, 6 `tokenStream` LONGBLOB NOT NULL, 7 `tree` LONGTEXT NOT NULL, 8 `dateCreated` INT UNSIGNED NOT NULL, 9 `dateModified` INT UNSIGNED NOT NULL 10);