From f6a1c104b034e74018a40a21612efec438a66c59 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 13 Aug 2015 15:25:26 +0000 Subject: [PATCH] missing account_description stuff for sql --- phpgwapi/setup/tables_current.inc.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/phpgwapi/setup/tables_current.inc.php b/phpgwapi/setup/tables_current.inc.php index a25e5f65a1..51aefca55d 100644 --- a/phpgwapi/setup/tables_current.inc.php +++ b/phpgwapi/setup/tables_current.inc.php @@ -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(),