mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
35 lines
1.5 KiB
PHP
35 lines
1.5 KiB
PHP
<?php
|
|
/**************************************************************************\
|
|
* eGroupWare - Setup *
|
|
* http://www.eGroupWare.org *
|
|
* Created by eTemplates DB-Tools written by ralfbecker@outdoor-training.de *
|
|
* -------------------------------------------- *
|
|
* This program is free software; you can redistribute it and/or modify it *
|
|
* under the terms of the GNU General Public License as published by the *
|
|
* Free Software Foundation; either version 2 of the License, or (at your *
|
|
* option) any later version. *
|
|
\**************************************************************************/
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
$phpgw_baseline = array(
|
|
'egw_importexport_definitions' => array(
|
|
'fd' => array(
|
|
'definition_id' => array('type' => 'auto'),
|
|
'name' => array('type' => 'varchar','precision' => '255'),
|
|
'application' => array('type' => 'varchar','precision' => '50'),
|
|
'plugin' => array('type' => 'varchar','precision' => '100'),
|
|
'type' => array('type' => 'varchar','precision' => '20'),
|
|
'allowed_users' => array('type' => 'varchar','precision' => '255'),
|
|
'plugin_options' => array('type' => 'longtext'),
|
|
'owner' => array('type' => 'int','precision' => '20'),
|
|
'description' => array('type' => 'varchar','precision' => '255')
|
|
),
|
|
'pk' => array('definition_id'),
|
|
'fk' => array(),
|
|
'ix' => array('name'),
|
|
'uc' => array('name')
|
|
)
|
|
);
|