1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-02-07 20:38:32 +01:00
phorge-phorge/src/applications/owners/storage/PhabricatorOwnersPath.php

26 lines
553 B
PHP
Raw Normal View History

2011-04-03 14:48:36 -07:00
<?php
final class PhabricatorOwnersPath extends PhabricatorOwnersDAO {
2011-04-03 14:48:36 -07:00
protected $packageID;
protected $repositoryPHID;
protected $path;
protected $excluded;
2011-04-03 14:48:36 -07:00
public function getConfiguration() {
return array(
self::CONFIG_TIMESTAMPS => false,
self::CONFIG_COLUMN_SCHEMA => array(
'path' => 'text255',
'excluded' => 'bool',
),
self::CONFIG_KEY_SCHEMA => array(
'packageID' => array(
'columns' => array('packageID'),
),
),
2011-04-03 22:03:27 -07:00
) + parent::getConfiguration();
2011-04-03 14:48:36 -07:00
}
}