egroupware_official/calendar/setup/tables_current.inc.php

78 lines
3.6 KiB
PHP

<?php
/**************************************************************************\
* phpGroupWare *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* 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(
'phpgw_cal' => array(
'fd' => array(
'cal_id' => array('type' => 'auto','nullable' => False),
'owner' => array('type' => 'int', 'precision' => 8,'nullable' => False),
'category' => array('type' => 'int', 'precision' => 8,'nullable' => False),
'groups' => array('type' => 'varchar', 'precision' => 255,'nullable' => True),
'datetime' => array('type' => 'int', 'precision' => 8,'nullable' => True),
'mdatetime' => array('type' => 'int', 'precision' => 8,'nullable' => True),
'edatetime' => array('type' => 'int', 'precision' => 8,'nullable' => True),
'priority' => array('type' => 'int', 'precision' => 8,'nullable' => False,'default' => '2'),
'cal_type' => array('type' => 'varchar', 'precision' => 10,'nullable' => True),
'is_public' => array('type' => 'int', 'precision' => 8,'nullable' => False,'default' => '1'),
'title' => array('type' => 'varchar', 'precision' => 80,'nullable' => False,'default' => '1'),
'description' => array('type' => 'text','nullable' => True)
),
'pk' => array('cal_id'),
'fk' => array(),
'ix' => array(),
'uc' => array()
),
'phpgw_cal_holidays' => array(
'fd' => array(
'hol_id' => array('type' => 'auto','nullable' => False),
'locale' => array('type' => 'char', 'precision' => 2,'nullable' => False),
'name' => array('type' => 'varchar', 'precision' => 50,'nullable' => False),
'mday' => array('type' => 'int', 'precision' => 8,'nullable' => False),
'month_num' => array('type' => 'int', 'precision' => 8,'nullable' => False),
'occurence' => array('type' => 'int', 'precision' => 8,'nullable' => False),
'dow' => array('type' => 'int', 'precision' => 8,'nullable' => False),
'observance_rule' => array('type' => 'int', 'precision' => 8,'nullable' => False)
),
'pk' => array('hol_id'),
'fk' => array(),
'ix' => array(),
'uc' => array()
),
'phpgw_cal_repeats' => array(
'fd' => array(
'cal_id' => array('type' => 'int', 'precision' => 8,'nullable' => False),
'recur_type' => array('type' => 'int', 'precision' => 8,'nullable' => False),
'recur_use_end' => array('type' => 'int', 'precision' => 8,'nullable' => True),
'recur_enddate' => array('type' => 'int', 'precision' => 8,'nullable' => True),
'recur_interval' => array('type' => 'int', 'precision' => 8,'nullable' => True,'default' => '1'),
'recur_data' => array('type' => 'int', 'precision' => 8,'nullable' => True,'default' => '1')
),
'pk' => array(),
'fk' => array(),
'ix' => array(),
'uc' => array()
),
'phpgw_cal_user' => array(
'fd' => array(
'cal_id' => array('type' => 'int', 'precision' => 8,'nullable' => False),
'cal_login' => array('type' => 'int', 'precision' => 8,'nullable' => False),
'cal_status' => array('type' => 'char', 'precision' => 1,'nullable' => True,'default' => 'A')
),
'pk' => array('cal_id','cal_login'),
'fk' => array(),
'ix' => array(),
'uc' => array()
)
);
?>