mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-16 13:03:16 +01:00
25 lines
688 B
PHP
25 lines
688 B
PHP
|
<?php
|
||
|
/**
|
||
|
* eGroupWare - Notifications
|
||
|
*
|
||
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
||
|
* @package notifications
|
||
|
* @link http://www.egroupware.org
|
||
|
* @author Cornelius Weiss <nelius@cwtech.de>
|
||
|
* @version $Id: $
|
||
|
*/
|
||
|
|
||
|
$phpgw_baseline = array(
|
||
|
'egw_notificationpopup' => array(
|
||
|
'fd' => array(
|
||
|
'account_id' => array('type' => 'varchar','precision' => '255','nullable' => False),
|
||
|
'session_id' => array('type' => 'varchar','precision' => '255','nullable' => False),
|
||
|
'message' => array('type' => 'longtext')
|
||
|
),
|
||
|
'pk' => array(),
|
||
|
'fk' => array(),
|
||
|
'ix' => array('account_id','session_id'),
|
||
|
'uc' => array()
|
||
|
)
|
||
|
);
|