@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
1CREATE TABLE `{$NAMESPACE}_ponder`.`ponder_comment` (
2 `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
3 `authorPHID` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
4 `targetPHID` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
5 `content` longtext CHARACTER SET utf8 NOT NULL,
6 `dateCreated` int(10) unsigned NOT NULL,
7 `dateModified` int(10) unsigned NOT NULL,
8 PRIMARY KEY (`id`),
9 KEY `authorPHID` (`authorPHID`),
10 KEY `targetPHID` (`targetPHID`)
11) ENGINE=InnoDB DEFAULT CHARSET=utf8;