mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:36 +01:00
33 lines
1.3 KiB
PHP
33 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* EGroupware - eTemplates DB schema
|
|
*
|
|
* @link http://www.egroupware.org
|
|
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
|
* @package etemplate
|
|
* @subpackage setup
|
|
* @copyright (c) 2002-13 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @version $Id$
|
|
*/
|
|
|
|
$phpgw_baseline = array(
|
|
'egw_etemplate' => array(
|
|
'fd' => array(
|
|
'et_name' => array('type' => 'varchar','precision' => '80','nullable' => False),
|
|
'et_template' => array('type' => 'varchar','precision' => '20','nullable' => False,'default' => ''),
|
|
'et_lang' => array('type' => 'varchar','precision' => '5','nullable' => False,'default' => ''),
|
|
'et_group' => array('type' => 'int','precision' => '4','nullable' => False,'default' => '0'),
|
|
'et_version' => array('type' => 'varchar','precision' => '20','nullable' => False,'default' => ''),
|
|
'et_data' => array('type' => 'longtext'),
|
|
'et_size' => array('type' => 'varchar','precision' => '128'),
|
|
'et_style' => array('type' => 'text'),
|
|
'et_modified' => array('type' => 'int','meta' => 'timestamp','precision' => '4','nullable' => False,'default' => '0')
|
|
),
|
|
'pk' => array('et_name','et_template','et_lang','et_group','et_version'),
|
|
'fk' => array(),
|
|
'ix' => array(),
|
|
'uc' => array()
|
|
)
|
|
);
|