mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-02 11:42:42 +01:00
b0e145f2fe
Summary: Ref T418. Depends on D6992. This adds index and value storage for Maniphest custom fields. Test Plan: Ran storage upgrade. Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T418 Differential Revision: https://secure.phabricator.com/D6995
11 lines
180 B
PHP
11 lines
180 B
PHP
<?php
|
|
|
|
final class ManiphestCustomFieldNumericIndex
|
|
extends PhabricatorCustomFieldNumericIndexStorage {
|
|
|
|
public function getApplicationName() {
|
|
return 'maniphest';
|
|
}
|
|
|
|
}
|
|
|