[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/applications/project/storage/ -> PhabricatorProjectSlug.php (source)

   1  <?php
   2  
   3  final class PhabricatorProjectSlug extends PhabricatorProjectDAO {
   4  
   5    protected $slug;
   6    protected $projectPHID;
   7  
   8    public function getConfiguration() {
   9      return array(
  10        self::CONFIG_COLUMN_SCHEMA => array(
  11          'slug' => 'text128',
  12        ),
  13        self::CONFIG_KEY_SCHEMA => array(
  14          'key_slug' => array(
  15            'columns' => array('slug'),
  16            'unique' => true,
  17          ),
  18          'key_projectPHID' => array(
  19            'columns' => array('projectPHID'),
  20          ),
  21        ),
  22      ) + parent::getConfiguration();
  23    }
  24  
  25  }


Generated: Sun Nov 30 09:20:46 2014 Cross-referenced by PHPXref 0.7.1