missing account_description stuff for sql

This commit is contained in:
Ralf Becker 2015-08-13 15:25:26 +00:00
parent 05f2aed6e1
commit f6a1c104b0

View File

@ -64,7 +64,8 @@ $phpgw_baseline = array(
'account_status' => array('type' => 'char','precision' => '1','nullable' => False,'default' => 'A'),
'account_expires' => array('type' => 'int','precision' => '4'),
'account_type' => array('type' => 'char','precision' => '1'),
'account_primary_group' => array('type' => 'int','meta' => 'group','precision' => '4','nullable' => False,'default' => '0')
'account_primary_group' => array('type' => 'int','meta' => 'group','precision' => '4','nullable' => False,'default' => '0'),
'account_description' => array('type' => 'varchar','precision' => '255','comment' => 'group description')
),
'pk' => array('account_id'),
'fk' => array(),