@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 314 B view raw
1CREATE TABLE {$NAMESPACE}_differential.differential_changeset_parse_cache ( 2 id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, 3 cacheIndex BINARY(12) NOT NULL, 4 cache LONGBLOB NOT NULL, 5 dateCreated INT UNSIGNED NOT NULL, 6 UNIQUE KEY `key_cacheIndex` (cacheIndex) 7) ENGINE=InnoDB, COLLATE {$COLLATE_TEXT};