@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<?php
2
3abstract class PhabricatorProjectCustomField
4 extends PhabricatorCustomField {
5
6 public function newStorageObject() {
7 return new PhabricatorProjectCustomFieldStorage();
8 }
9
10 protected function newStringIndexStorage() {
11 return new PhabricatorProjectCustomFieldStringIndex();
12 }
13
14 protected function newNumericIndexStorage() {
15 return new PhabricatorProjectCustomFieldNumericIndex();
16 }
17
18}