mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-25 05:58:21 +01:00
25 lines
529 B
PHP
25 lines
529 B
PHP
|
<?php
|
||
|
|
||
|
final class DifferentialReviewer
|
||
|
extends DifferentialDAO {
|
||
|
|
||
|
protected $revisionPHID;
|
||
|
protected $reviewerPHID;
|
||
|
protected $reviewerStatus;
|
||
|
|
||
|
protected function getConfiguration() {
|
||
|
return array(
|
||
|
self::CONFIG_COLUMN_SCHEMA => array(
|
||
|
'reviewerStatus' => 'text64',
|
||
|
),
|
||
|
self::CONFIG_KEY_SCHEMA => array(
|
||
|
'key_revision' => array(
|
||
|
'columns' => array('revisionPHID', 'reviewerPHID'),
|
||
|
'unique' => true,
|
||
|
),
|
||
|
),
|
||
|
) + parent::getConfiguration();
|
||
|
}
|
||
|
|
||
|
}
|