@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.

Properly create xhpast database

Summary:
It isn't deleted by `storage destroy`.

This should be a no-op on current storage because we execute `CREATE DATABASE IF NOT EXISTS`.

Test Plan:
$ bin/storage destroy --dryrun

Reviewers: nh, epriestley

Reviewed By: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D3659

vrana cbde56cd 2bc9ac5e

+4 -1
-1
resources/sql/patches/xhprof.sql
··· 1 - CREATE DATABASE {$NAMESPACE}_xhprof; 2 1 CREATE TABLE {$NAMESPACE}_xhprof.xhprof_sample ( 3 2 `id` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, 4 3 `filePHID` VARCHAR(64) NOT NULL COLLATE utf8_bin,
+4
src/infrastructure/storage/patch/PhabricatorBuiltinPatchList.php
··· 167 167 'type' => 'db', 168 168 'name' => 'ponder', 169 169 ), 170 + 'db.xhpast' => array( 171 + 'type' => 'db', 172 + 'name' => 'xhpast', 173 + ), 170 174 '0000.legacy.sql' => array( 171 175 'type' => 'sql', 172 176 'name' => $this->getPatchPath('0000.legacy.sql'),