@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 7 lines 227 B view raw
1CREATE TABLE {$NAMESPACE}_differential.differential_revisionhash ( 2 revisionID INT UNSIGNED NOT NULL, 3 type CHAR(4) BINARY NOT NULL, 4 hash VARCHAR(40) BINARY NOT NULL, 5 KEY (type, hash), 6 KEY (revisionID) 7) ENGINE=InnoDB;