Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/fact/storage/PhabricatorFactCursor.php
12256 views
1
<?php
2
3
final class PhabricatorFactCursor extends PhabricatorFactDAO {
4
5
protected $name;
6
protected $position;
7
8
protected function getConfiguration() {
9
return array(
10
self::CONFIG_COLUMN_SCHEMA => array(
11
'name' => 'text64',
12
'position' => 'text64',
13
),
14
self::CONFIG_KEY_SCHEMA => array(
15
'name' => array(
16
'columns' => array('name'),
17
'unique' => true,
18
),
19
),
20
) + parent::getConfiguration();
21
}
22
23
}
24
25