remove not longer needed tables_baseline

This commit is contained in:
Cornelius Weiß 2006-09-28 05:04:46 +00:00
parent 2d2aef9e16
commit 3405357a57

View File

@ -1,36 +0,0 @@
<?php
/**
* eGroupWare - resources
* http://www.egroupware.org
* Created by eTemplates DB-Tools written by ralfbecker@outdoor-training.de
*
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @package resources
* @subpackage setup
* @author Cornelius Weiss <egw@von-und-zu-weiss.de>
* @version $Id$
*/
$phpgw_baseline = array(
'egw_resources' => array(
'fd' => array(
'id' => array('type' => 'auto'),
'name' => array('type' => 'varchar','precision' => '100'),
'short_description' => array('type' => 'varchar','precision' => '100'),
'cat_id' => array('type' => 'int','precision' => '11','nullable' => False),
'quantity' => array('type' => 'int','precision' => '11'),
'useable' => array('type' => 'int','precision' => '11'),
'location' => array('type' => 'varchar','precision' => '100'),
'bookable' => array('type' => 'varchar','precision' => '1'),
'buyable' => array('type' => 'varchar','precision' => '1'),
'prize' => array('type' => 'varchar','precision' => '200'),
'long_description' => array('type' => 'longtext'),
'picture' => array('type' => 'blob'),
'accessories' => array('type' => 'varchar','precision' => '50')
),
'pk' => array('id'),
'fk' => array(),
'ix' => array(),
'uc' => array()
)
);