Remove all "FileHasObject" edge reads and writes
[phabricator.git] / src / applications / auth / storage / PhabricatorAuthHMACKey.php
blob4d2aae49974922d3086cc25a1dafacf1ddde4ee9
1 <?php
3 final class PhabricatorAuthHMACKey
4 extends PhabricatorAuthDAO {
6 protected $keyName;
7 protected $keyValue;
9 protected function getConfiguration() {
10 return array(
11 self::CONFIG_COLUMN_SCHEMA => array(
12 'keyName' => 'text64',
13 'keyValue' => 'text128',
15 self::CONFIG_KEY_SCHEMA => array(
16 'key_name' => array(
17 'columns' => array('keyName'),
18 'unique' => true,
21 ) + parent::getConfiguration();