Generate file attachment transactions for explicit Remarkup attachments on common...
[phabricator.git] / src / applications / differential / storage / DifferentialHiddenComment.php
blob90dbb527f265e0d9201b55aee770c20c93c856c4
1 <?php
3 final class DifferentialHiddenComment
4 extends DifferentialDAO {
6 protected $userPHID;
7 protected $commentID;
9 protected function getConfiguration() {
10 return array(
11 self::CONFIG_TIMESTAMPS => false,
12 self::CONFIG_KEY_SCHEMA => array(
13 'key_user' => array(
14 'columns' => array('userPHID', 'commentID'),
15 'unique' => true,
17 'key_comment' => array(
18 'columns' => array('commentID'),
21 ) + parent::getConfiguration();