mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 18:32:41 +01:00
5677cd23bd
Summary: Ref T3886. Adds the storage, indexes, and storage classes for modernizing Differential custom fields. Test Plan: Ran `storage upgrade`. Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T3886 Differential Revision: https://secure.phabricator.com/D7138
11 lines
169 B
PHP
11 lines
169 B
PHP
<?php
|
|
|
|
final class DifferentialCustomFieldStorage
|
|
extends PhabricatorCustomFieldStorage {
|
|
|
|
public function getApplicationName() {
|
|
return 'differential';
|
|
}
|
|
|
|
}
|
|
|