@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 10 lines 415 B view raw
1CREATE TABLE {$NAMESPACE}_cache.cache_markupcache ( 2 id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, 3 cacheKey VARCHAR(128) NOT NULL collate utf8_bin, 4 cacheData LONGTEXT NOT NULL COLLATE utf8_bin, 5 metadata LONGTEXT NOT NULL COLLATE utf8_bin, 6 dateCreated INT UNSIGNED NOT NULL, 7 dateModified INT UNSIGNED NOT NULL, 8 UNIQUE KEY (cacheKey), 9 KEY (dateCreated) 10) ENGINE=InnoDB, COLLATE utf8_general_ci;