2001-05-25 05:28:42 +02:00
|
|
|
<?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' => 11,'nullable' => False),
|
|
|
|
'category' => array('type' => 'int', 'precision' => 11,'nullable' => False),
|
|
|
|
'groups' => array('type' => 'varchar', 'precision' => 255,'nullable' => True),
|
|
|
|
'datetime' => array('type' => 'int', 'precision' => 11,'nullable' => True),
|
|
|
|
'mdatetime' => array('type' => 'int', 'precision' => 11,'nullable' => True),
|
|
|
|
'edatetime' => array('type' => 'int', 'precision' => 11,'nullable' => True),
|
|
|
|
'priority' => array('type' => 'int', 'precision' => 11,'nullable' => False,'default' => '2'),
|
2001-05-25 05:45:27 +02:00
|
|
|
'cal_type' => array('type' => 'varchar', 'precision' => 10,'nullable' => True),
|
2001-05-25 05:28:42 +02:00
|
|
|
'is_public' => array('type' => 'int', 'precision' => 11,'nullable' => False,'default' => '1'),
|
|
|
|
'title' => array('type' => 'varchar', 'precision' => 80,'nullable' => False,'default' => '1'),
|
|
|
|
'description' => array('type' => 'text','nullable' => True,'default' => '1')
|
|
|
|
),
|
|
|
|
'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' => 11,'nullable' => False),
|
|
|
|
'month_num' => array('type' => 'int', 'precision' => 11,'nullable' => False),
|
|
|
|
'occurence' => array('type' => 'int', 'precision' => 11,'nullable' => False),
|
|
|
|
'dow' => array('type' => 'int', 'precision' => 11,'nullable' => False),
|
|
|
|
'observance_rule' => array('type' => 'int', 'precision' => 11,'nullable' => False)
|
|
|
|
),
|
|
|
|
'pk' => array('hol_id'),
|
|
|
|
'fk' => array(''),
|
|
|
|
'ix' => array(''),
|
|
|
|
'uc' => array('')
|
|
|
|
),
|
|
|
|
'phpgw_cal_repeats' => array(
|
|
|
|
'fd' => array(
|
|
|
|
'cal_id' => array('type' => 'int', 'precision' => 11,'nullable' => False),
|
|
|
|
'recur_type' => array('type' => 'int', 'precision' => 11,'nullable' => False),
|
|
|
|
'recur_use_end' => array('type' => 'int', 'precision' => 11,'nullable' => True),
|
|
|
|
'recur_enddate' => array('type' => 'int', 'precision' => 11,'nullable' => True),
|
|
|
|
'recur_interval' => array('type' => 'int', 'precision' => 11,'nullable' => True,'default' => '1'),
|
|
|
|
'recur_data' => array('type' => 'int', 'precision' => 11,'nullable' => True,'default' => '1')
|
|
|
|
),
|
|
|
|
'pk' => array(''),
|
|
|
|
'fk' => array(''),
|
|
|
|
'ix' => array(''),
|
|
|
|
'uc' => array('')
|
|
|
|
),
|
|
|
|
'phpgw_cal_user' => array(
|
|
|
|
'fd' => array(
|
|
|
|
'cal_id' => array('type' => 'int', 'precision' => 11,'nullable' => False),
|
|
|
|
'cal_login' => array('type' => 'int', 'precision' => 11,'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('')
|
|
|
|
)
|
|
|
|
);
|
|
|
|
?>
|