mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-17 05:23:13 +01:00
598dbca2c3
- Fix wrong file name structure for tables_current - Implement session management
58 lines
2.7 KiB
PHP
58 lines
2.7 KiB
PHP
<?php
|
|
/**
|
|
* EGroupware - Filemanager - Setup
|
|
*
|
|
* @link http://www.egroupware.org
|
|
* @author Hadi Nategh <hn-AT-stylite.de>
|
|
* @package filemanager
|
|
* @subpackage setup
|
|
* @copyright (c) 2016 by Stylite AG
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @version $Id$
|
|
*/
|
|
|
|
$phpgw_baseline = array(
|
|
'egw_collab_member' => array(
|
|
'fd' => array(
|
|
'collab_member_id' => array('type' => 'auto','nullable' => False, 'comment' => 'Unique per user and session'),
|
|
'collab_es_id' => array('type' => 'varchar','precision' => '64','nullable' => False, 'comment' => 'Related editing session id'),
|
|
'collab_uid' => array('type' => 'varchar','precision' => '64'),
|
|
'collab_color' => array('type' => 'varchar','precision' => '32'),
|
|
'collab_last_activity' => array('type' => 'int','precision' => '4'),
|
|
'collab_is_guest' => array('type' => 'int','precision' => '2','default' => '0','nullable' => False),
|
|
'collab_token' => array('type' => 'varchar','precision' => '32'),
|
|
'collab_status' => array('type' => 'int','precision' => '2','default' => '1','nullable' => False)
|
|
),
|
|
'pk' => array('collab_member_id'),
|
|
'fk' => array(),
|
|
'ix' => array(),
|
|
'uc' => array()
|
|
),
|
|
'egw_collab_op' => array(
|
|
'fd' => array(
|
|
'collab_seq' => array('type' => 'auto','nullable' => False, 'comment' => 'Sequence number'),
|
|
'collab_es_id' => array('type' => 'varchar','precision' => '64','nullable' => False, 'comment' => 'Editing session id'),
|
|
'collab_member' => array('type' => 'int','precision' => '4','default' => '1','nullable' => False, 'comment' => 'User and time specific'),
|
|
'collab_optype' => array('type' => 'varchar','precision' => '64', 'comment' => 'Operation type'),
|
|
'collab_opspec' => array('type' => 'longtext', 'comment' => 'json-string')
|
|
),
|
|
'pk' => array('collab_seq'),
|
|
'fk' => array(),
|
|
'ix' => array(),
|
|
'uc' => array()
|
|
),
|
|
'egw_collab_session' => array(
|
|
'fd' => array(
|
|
'collab_es_id' => array('type' => 'varchar','precision' => '64','nullable' => False, 'comment' => 'Editing session id'),
|
|
'collab_genesis_url' => array('type' => 'varchar','precision' => '512', 'comment' => 'Relative to owner documents storage /template.odt'),
|
|
'collab_genesis_hash' => array('type' => 'varchar','precision' => '128','nullable' => False, 'comment' => 'To be sure the genesis did not change'),
|
|
'collab_file_id' => array('type' => 'varchar','precision' => '512', 'comment' => 'Relative to storage e.g. /template.odt'),
|
|
'account_id' => array('type' => 'int','meta' => 'user','precision' => '4','nullable' => False, 'comment' => 'user who created the session')
|
|
),
|
|
'pk' => array('collab_es_id'),
|
|
'fk' => array(),
|
|
'ix' => array(),
|
|
'uc' => array()
|
|
)
|
|
);
|