1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-19 03:50:54 +01:00

Minor, fix some missing column schema

Auditors: btrahan
This commit is contained in:
epriestley 2014-10-17 05:06:54 -07:00
parent 3e516e40f3
commit e6d946661d
2 changed files with 2 additions and 0 deletions

View file

@ -22,6 +22,7 @@ final class AlmanacDevice
self::CONFIG_COLUMN_SCHEMA => array(
'name' => 'text128',
'nameIndex' => 'bytes12',
'mailKey' => 'bytes20',
),
self::CONFIG_KEY_SCHEMA => array(
'key_name' => array(

View file

@ -20,6 +20,7 @@ final class AlmanacNetwork
self::CONFIG_AUX_PHID => true,
self::CONFIG_COLUMN_SCHEMA => array(
'name' => 'text128',
'mailKey' => 'bytes20',
),
) + parent::getConfiguration();
}