* @version $Id$ */ $phpgw_baseline = array( 'egw_notificationpopup' => array( 'fd' => array( 'notify_id' => array('type' => 'auto','nullable' => False,'comment' => 'primary key'), 'account_id' => array('type' => 'int','meta' => 'user','precision' => '20','nullable' => False,'comment' => 'user to notify'), 'notify_message' => array('type' => 'longtext','comment' => 'notification message'), 'notify_created' => array('type' => 'timestamp','meta' => 'timestamp','default' => 'current_timestamp','comment' => 'creation time of notification'), 'notify_type' => array('type' => 'ascii','precision' => '32','comment' => 'notification type'), 'notify_status' => array('type' => 'varchar','precision' => '32','comment' => 'notification status'), 'notify_data' => array('type' => 'varchar','precision' => '4096','comment' => 'notification data'), 'notify_app' => array('type' => 'ascii','precision' => '16','comment' => 'appname'), 'notify_app_id' => array('type' => 'ascii','precision' => '64','comment' => 'application id') ), 'pk' => array('notify_id'), 'fk' => array(), 'ix' => array('notify_created',array('account_id','notify_type'),array('notify_app','notify_app_id')), 'uc' => array() ) );