[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/infrastructure/storage/schema/ -> PhabricatorStorageSchemaSpec.php (source)

   1  <?php
   2  
   3  final class PhabricatorStorageSchemaSpec
   4    extends PhabricatorConfigSchemaSpec {
   5  
   6    public function buildSchemata() {
   7      $this->buildRawSchema(
   8        'meta_data',
   9        'patch_status',
  10        array(
  11          'patch' => 'text128',
  12          'applied' => 'uint32',
  13        ),
  14        array(
  15          'PRIMARY' => array(
  16            'columns' => array('patch'),
  17            'unique' => true,
  18          ),
  19        ));
  20    }
  21  
  22  }


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