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

Save edge type as number

Summary: We use numbers here and I see no reason for strings.

Test Plan:
$ bin/storage upgrade

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

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

vrana f7709009 fbf8328d

+14
+10
resources/sql/patches/edgetype.sql
··· 1 + ALTER TABLE {$NAMESPACE}_phame.edge MODIFY type int unsigned NOT NULL; 2 + ALTER TABLE {$NAMESPACE}_maniphest.edge MODIFY type int unsigned NOT NULL; 3 + ALTER TABLE {$NAMESPACE}_repository.edge MODIFY type int unsigned NOT NULL; 4 + ALTER TABLE {$NAMESPACE}_differential.edge MODIFY type int unsigned NOT NULL; 5 + ALTER TABLE {$NAMESPACE}_file.edge MODIFY type int unsigned NOT NULL; 6 + ALTER TABLE {$NAMESPACE}_user.edge MODIFY type int unsigned NOT NULL; 7 + ALTER TABLE {$NAMESPACE}_project.edge MODIFY type int unsigned NOT NULL; 8 + ALTER TABLE {$NAMESPACE}_metamta.edge MODIFY type int unsigned NOT NULL; 9 + ALTER TABLE {$NAMESPACE}_harbormaster.edge MODIFY type int unsigned NOT NULL; 10 + ALTER TABLE {$NAMESPACE}_ponder.edge MODIFY type int unsigned NOT NULL;
+4
src/infrastructure/storage/patch/PhabricatorBuiltinPatchList.php
··· 968 968 'type' => 'sql', 969 969 'name' => $this->getPatchPath('daemonstatuskey.sql'), 970 970 ), 971 + 'edgetype.sql' => array( 972 + 'type' => 'sql', 973 + 'name' => $this->getPatchPath('edgetype.sql'), 974 + ), 971 975 ); 972 976 } 973 977