1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-25 08:12:40 +01:00
phorge-phorge/src/applications/slowvote/storage/PhabricatorSlowvoteChoice.php

23 lines
465 B
PHP
Raw Normal View History

<?php
final class PhabricatorSlowvoteChoice extends PhabricatorSlowvoteDAO {
protected $pollID;
protected $optionID;
protected $authorPHID;
protected function getConfiguration() {
return array(
self::CONFIG_KEY_SCHEMA => array(
'pollID' => array(
'columns' => array('pollID'),
),
'authorPHID' => array(
'columns' => array('authorPHID'),
),
),
) + parent::getConfiguration();
}
}