egroupware/phpgwapi/setup/tables_current.inc.php

374 lines
18 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$
// $Source$
$phpgw_baseline = array(
'phpgw_config' => array(
'fd' => array(
'config_app' => array('type' => 'varchar','precision' => '50'),
'config_name' => array('type' => 'varchar','precision' => '255','nullable' => False),
'config_value' => array('type' => 'text')
),
'pk' => array(),
'fk' => array(),
'ix' => array(),
'uc' => array('config_name')
),
'phpgw_applications' => array(
'fd' => array(
'app_id' => array('type' => 'auto','precision' => '4','nullable' => False),
'app_name' => array('type' => 'varchar','precision' => '25','nullable' => False),
'app_enabled' => array('type' => 'int','precision' => '4','nullable' => False),
'app_order' => array('type' => 'int','precision' => '4','nullable' => False),
'app_tables' => array('type' => 'text','nullable' => False),
'app_version' => array('type' => 'varchar','precision' => '20','nullable' => False,'default' => '0.0')
),
'pk' => array('app_id'),
'fk' => array(),
'ix' => array(),
'uc' => array('app_name')
),
'phpgw_acl' => array(
'fd' => array(
'acl_appname' => array('type' => 'varchar','precision' => '50'),
'acl_location' => array('type' => 'varchar','precision' => '255'),
'acl_account' => array('type' => 'int','precision' => '4'),
'acl_rights' => array('type' => 'int','precision' => '4')
),
'pk' => array(),
'ix' => array(),
'fk' => array(),
'uc' => array()
),
'phpgw_accounts' => array(
'fd' => array(
'account_id' => array('type' => 'auto'),
'account_lid' => array('type' => 'varchar','precision' => '25','nullable' => False),
'account_pwd' => array('type' => 'varchar','precision' => '100','nullable' => False),
'account_firstname' => array('type' => 'varchar','precision' => '50'),
'account_lastname' => array('type' => 'varchar','precision' => '50'),
'account_lastlogin' => array('type' => 'int','precision' => '4'),
'account_lastloginfrom' => array('type' => 'varchar','precision' => '255'),
'account_lastpwd_change' => array('type' => 'int','precision' => '4'),
'account_status' => array('type' => 'char','precision' => '1','nullable' => False,'default' => 'A'),
'account_expires' => array('type' => 'int','precision' => '4'),
'account_type' => array('type' => 'char','precision' => '1'),
'person_id' => array('type' => 'int','precision' => '4'),
'account_primary_group' => array('type' => 'int','precision' => '4','nullable' => False,'default' => '0')
),
'pk' => array('account_id'),
'fk' => array(),
'ix' => array(),
'uc' => array('account_lid')
),
'phpgw_preferences' => array(
'fd' => array(
'preference_owner' => array('type' => 'int','precision' => '4','nullable' => False),
'preference_app' => array('type' => 'varchar','precision' => '25','nullable' => False),
'preference_value' => array('type' => 'text','nullable' => False)
),
'pk' => array('preference_owner','preference_app'),
'fk' => array(),
'ix' => array(),
'uc' => array()
),
'phpgw_sessions' => array(
'fd' => array(
'session_id' => array('type' => 'varchar','precision' => '255','nullable' => False),
'session_lid' => array('type' => 'varchar','precision' => '255'),
'session_ip' => array('type' => 'varchar','precision' => '255'),
'session_logintime' => array('type' => 'int','precision' => '4'),
'session_dla' => array('type' => 'int','precision' => '4'),
'session_action' => array('type' => 'varchar','precision' => '255'),
'session_flags' => array('type' => 'char','precision' => '2')
),
'pk' => array(),
'fk' => array(),
'ix' => array(),
'uc' => array('session_id')
),
'phpgw_app_sessions' => array(
'fd' => array(
'sessionid' => array('type' => 'varchar','precision' => '255','nullable' => False),
'loginid' => array('type' => 'varchar','precision' => '20'),
'location' => array('type' => 'varchar','precision' => '255'),
'app' => array('type' => 'varchar','precision' => '20'),
'content' => array('type' => 'longtext'),
'session_dla' => array('type' => 'int','precision' => '4')
),
'pk' => array(),
'fk' => array(),
'ix' => array(),
'uc' => array()
),
'phpgw_access_log' => array(
'fd' => array(
'sessionid' => array('type' => 'char','precision' => '32','nullable' => False),
'loginid' => array('type' => 'varchar','precision' => '30','nullable' => False),
'ip' => array('type' => 'varchar','precision' => '30','nullable' => False),
'li' => array('type' => 'int','precision' => '4','nullable' => False),
'lo' => array('type' => 'int','precision' => '4','nullable' => True,'default' => '0'),
'account_id' => array('type' => 'int','precision' => '4','nullable' => False,'default' => '0')
),
'pk' => array(),
'fk' => array(),
'ix' => array(),
'uc' => array()
),
'phpgw_hooks' => array(
'fd' => array(
'hook_id' => array('type' => 'auto','nullable' => False),
'hook_appname' => array('type' => 'varchar','precision' => '255'),
'hook_location' => array('type' => 'varchar','precision' => '255'),
'hook_filename' => array('type' => 'varchar','precision' => '255')
),
'pk' => array('hook_id'),
'ix' => array(),
'fk' => array(),
'uc' => array()
),
'phpgw_languages' => array(
'fd' => array(
'lang_id' => array('type' => 'varchar','precision' => '5','nullable' => False),
'lang_name' => array('type' => 'varchar','precision' => '50','nullable' => False),
'available' => array('type' => 'char','precision' => '3','nullable' => False,'default' => 'No')
),
'pk' => array('lang_id'),
'ix' => array(),
'fk' => array(),
'uc' => array()
),
'phpgw_lang' => array(
'fd' => array(
'message_id' => array('type' => 'varchar','precision' => '255','nullable' => False,'default' => ''),
'app_name' => array('type' => 'varchar','precision' => '100','nullable' => False,'default' => 'common'),
'lang' => array('type' => 'varchar','precision' => '5','nullable' => False,'default' => ''),
'content' => array('type' => 'text')
),
'pk' => array('message_id','app_name','lang'),
'fk' => array(),
'ix' => array(),
'uc' => array()
),
'phpgw_nextid' => array(
'fd' => array(
'id' => array('type' => 'int','precision' => '4','nullable' => True),
'appname' => array('type' => 'varchar','precision' => '25','nullable' => False)
),
'pk' => array(),
'fk' => array(),
'ix' => array(),
'uc' => array('appname')
),
'phpgw_categories' => array(
'fd' => array(
'cat_id' => array('type' => 'auto','precision' => '4','nullable' => False),
'cat_main' => array('type' => 'int','precision' => '4','nullable' => False,'default' => '0'),
'cat_parent' => array('type' => 'int','precision' => '4','nullable' => False,'default' => '0'),
'cat_level' => array('type' => 'int','precision' => '2','nullable' => False,'default' => '0'),
'cat_owner' => array('type' => 'int','precision' => '4','nullable' => False,'default' => '0'),
'cat_access' => array('type' => 'varchar','precision' => '7'),
'cat_appname' => array('type' => 'varchar','precision' => '50','nullable' => False),
'cat_name' => array('type' => 'varchar','precision' => '150','nullable' => False),
'cat_description' => array('type' => 'varchar','precision' => '255','nullable' => False),
'cat_data' => array('type' => 'text'),
'last_mod' => array('type' => 'int','precision' => '8','nullable' => False)
),
'pk' => array('cat_id'),
'fk' => array(),
'ix' => array(),
'uc' => array()
),
'phpgw_addressbook' => array(
'fd' => array(
'id' => array('type' => 'auto','nullable' => False),
'lid' => array('type' => 'varchar','precision' => '32'),
'tid' => array('type' => 'char','precision' => '1'),
'owner' => array('type' => 'int','precision' => '8'),
'access' => array('type' => 'varchar','precision' => '7'),
'cat_id' => array('type' => 'varchar','precision' => '32'),
'fn' => array('type' => 'varchar','precision' => '64'),
'n_family' => array('type' => 'varchar','precision' => '64'),
'n_given' => array('type' => 'varchar','precision' => '64'),
'n_middle' => array('type' => 'varchar','precision' => '64'),
'n_prefix' => array('type' => 'varchar','precision' => '64'),
'n_suffix' => array('type' => 'varchar','precision' => '64'),
'sound' => array('type' => 'varchar','precision' => '64'),
'bday' => array('type' => 'varchar','precision' => '32'),
'note' => array('type' => 'text'),
'tz' => array('type' => 'varchar','precision' => '8'),
'geo' => array('type' => 'varchar','precision' => '32'),
'url' => array('type' => 'varchar','precision' => '128'),
'pubkey' => array('type' => 'text'),
'org_name' => array('type' => 'varchar','precision' => '64'),
'org_unit' => array('type' => 'varchar','precision' => '64'),
'title' => array('type' => 'varchar','precision' => '64'),
'adr_one_street' => array('type' => 'varchar','precision' => '64'),
'adr_one_locality' => array('type' => 'varchar','precision' => '64'),
'adr_one_region' => array('type' => 'varchar','precision' => '64'),
'adr_one_postalcode' => array('type' => 'varchar','precision' => '64'),
'adr_one_countryname' => array('type' => 'varchar','precision' => '64'),
'adr_one_type' => array('type' => 'varchar','precision' => '32'),
'label' => array('type' => 'text'),
'adr_two_street' => array('type' => 'varchar','precision' => '64'),
'adr_two_locality' => array('type' => 'varchar','precision' => '64'),
'adr_two_region' => array('type' => 'varchar','precision' => '64'),
'adr_two_postalcode' => array('type' => 'varchar','precision' => '64'),
'adr_two_countryname' => array('type' => 'varchar','precision' => '64'),
'adr_two_type' => array('type' => 'varchar','precision' => '32'),
'tel_work' => array('type' => 'varchar','precision' => '40','nullable' => False,'default' => '+1 (000) 000-0000'),
'tel_home' => array('type' => 'varchar','precision' => '40','nullable' => False,'default' => '+1 (000) 000-0000'),
'tel_voice' => array('type' => 'varchar','precision' => '40','nullable' => False,'default' => '+1 (000) 000-0000'),
'tel_fax' => array('type' => 'varchar','precision' => '40','nullable' => False,'default' => '+1 (000) 000-0000'),
'tel_msg' => array('type' => 'varchar','precision' => '40','nullable' => False,'default' => '+1 (000) 000-0000'),
'tel_cell' => array('type' => 'varchar','precision' => '40','nullable' => False,'default' => '+1 (000) 000-0000'),
'tel_pager' => array('type' => 'varchar','precision' => '40','nullable' => False,'default' => '+1 (000) 000-0000'),
'tel_bbs' => array('type' => 'varchar','precision' => '40','nullable' => False,'default' => '+1 (000) 000-0000'),
'tel_modem' => array('type' => 'varchar','precision' => '40','nullable' => False,'default' => '+1 (000) 000-0000'),
'tel_car' => array('type' => 'varchar','precision' => '40','nullable' => False,'default' => '+1 (000) 000-0000'),
'tel_isdn' => array('type' => 'varchar','precision' => '40','nullable' => False,'default' => '+1 (000) 000-0000'),
'tel_video' => array('type' => 'varchar','precision' => '40','nullable' => False,'default' => '+1 (000) 000-0000'),
'tel_prefer' => array('type' => 'varchar','precision' => '32'),
'email' => array('type' => 'varchar','precision' => '64'),
'email_type' => array('type' => 'varchar','precision' => '32','nullable' => False,'default' => 'INTERNET'),
'email_home' => array('type' => 'varchar','precision' => '64'),
'email_home_type' => array('type' => 'varchar','precision' => '32','nullable' => False,'default' => 'INTERNET'),
'last_mod' => array('type' => 'int','precision' => '8','nullable' => False)
),
'pk' => array('id'),
'fk' => array(),
'ix' => array(),
'uc' => array()
),
'phpgw_addressbook_extra' => array(
'fd' => array(
'contact_id' => array('type' => 'int','precision' => '4','nullable' => True),
'contact_owner' => array('type' => 'int','precision' => '8','nullable' => True),
'contact_name' => array('type' => 'varchar','precision' => '255','nullable' => True),
'contact_value' => array('type' => 'text','nullable' => True)
),
'pk' => array(),
'fk' => array(),
'ix' => array(),
'uc' => array()
),
'phpgw_log' => array(
'fd' => array(
'log_id' => array('type' => 'auto','precision' => '4','nullable' => False),
'log_date' => array('type' => 'timestamp','nullable' => False),
'log_user' => array('type' => 'int','precision' => '4','nullable' => False),
'log_app' => array('type' => 'varchar','precision' => '50','nullable' => False),
'log_severity' => array('type' => 'char','precision' => '1','nullable' => False)
),
'pk' => array('log_id'),
'fk' => array(),
'ix' => array(),
'uc' => array()
),
'phpgw_log_msg' => array(
'fd' => array(
'log_msg_log_id' => array('type' => 'int','precision' => '4','nullable' => False),
'log_msg_seq_no' => array('type' => 'int','precision' => '4','nullable' => False),
'log_msg_date' => array('type' => 'timestamp','nullable' => False),
'log_msg_tx_fid' => array('type' => 'varchar','precision' => '4','nullable' => True),
'log_msg_tx_id' => array('type' => 'varchar','precision' => '4','nullable' => True),
'log_msg_severity' => array('type' => 'char','precision' => '1','nullable' => False),
'log_msg_code' => array('type' => 'varchar','precision' => '30','nullable' => False),
'log_msg_msg' => array('type' => 'text','nullable' => False),
'log_msg_parms' => array('type' => 'text','nullable' => False),
'log_msg_file' => array('type' => 'varchar','precision' => '255','nullable' => False),
'log_msg_line' => array('type' => 'int','precision' => '4','nullable' => False)
),
'pk' => array('log_msg_log_id','log_msg_seq_no'),
'fk' => array(),
'ix' => array(),
'uc' => array()
),
'phpgw_interserv' => array(
'fd' => array(
'server_id' => array('type' => 'auto','nullable' => False),
'server_name' => array('type' => 'varchar','precision' => '64','nullable' => True),
'server_host' => array('type' => 'varchar','precision' => '255','nullable' => True),
'server_url' => array('type' => 'varchar','precision' => '255','nullable' => True),
'trust_level' => array('type' => 'int','precision' => '4'),
'trust_rel' => array('type' => 'int','precision' => '4'),
'username' => array('type' => 'varchar','precision' => '64','nullable' => True),
'password' => array('type' => 'varchar','precision' => '255','nullable' => True),
'admin_name' => array('type' => 'varchar','precision' => '255','nullable' => True),
'admin_email' => array('type' => 'varchar','precision' => '255','nullable' => True),
'server_mode' => array('type' => 'varchar','precision' => '16','nullable' => False,'default' => 'xmlrpc'),
'server_security' => array('type' => 'varchar','precision' => '16','nullable' => True)
),
'pk' => array('server_id'),
'fk' => array(),
'ix' => array(),
'uc' => array()
),
'phpgw_vfs' => array(
'fd' => array(
'file_id' => array('type' => 'auto','nullable' => False),
'owner_id' => array('type' => 'int','precision' => '4','nullable' => False),
'createdby_id' => array('type' => 'int','precision' => '4','nullable' => True),
'modifiedby_id' => array('type' => 'int','precision' => '4','nullable' => True),
'created' => array('type' => 'date','nullable' => False,'default' => '1970-01-01'),
'modified' => array('type' => 'date','nullable' => True),
'size' => array('type' => 'int','precision' => '4','nullable' => True),
'mime_type' => array('type' => 'varchar','precision' => '150','nullable' => True),
'deleteable' => array('type' => 'char','precision' => '1','nullable' => True,'default' => 'Y'),
'comment' => array('type' => 'text','nullable' => True),
'app' => array('type' => 'varchar','precision' => '25','nullable' => True),
'directory' => array('type' => 'text','nullable' => True),
'name' => array('type' => 'text','nullable' => False),
'link_directory' => array('type' => 'text','nullable' => True),
'link_name' => array('type' => 'text','nullable' => True),
'version' => array('type' => 'varchar','precision' => '30','nullable' => False,'default' => '0.0.0.0'),
'content' => array('type' => 'text','nullable' => True)
),
'pk' => array('file_id'),
'fk' => array(),
'ix' => array(),
'uc' => array()
),
'phpgw_history_log' => array(
'fd' => array(
'history_id' => array('type' => 'auto','precision' => '4','nullable' => False),
'history_record_id' => array('type' => 'int','precision' => '4','nullable' => False),
'history_appname' => array('type' => 'varchar','precision' => '64','nullable' => False),
'history_owner' => array('type' => 'int','precision' => '4','nullable' => False),
'history_status' => array('type' => 'char','precision' => '2','nullable' => False),
'history_new_value' => array('type' => 'text','nullable' => False),
'history_timestamp' => array('type' => 'timestamp','nullable' => False,'default' => 'current_timestamp'),
'history_old_value' => array('type' => 'text','nullable' => False)
),
'pk' => array('history_id'),
'fk' => array(),
'ix' => array(),
'uc' => array()
),
'phpgw_async' => array(
'fd' => array(
'id' => array('type' => 'varchar','precision' => '255','nullable' => False),
'next' => array('type' => 'int','precision' => '4','nullable' => False),
'times' => array('type' => 'varchar','precision' => '255','nullable' => False),
'method' => array('type' => 'varchar','precision' => '80','nullable' => False),
'data' => array('type' => 'text','nullable' => False),
'account_id' => array('type' => 'int','precision' => '4','nullable' => False,'default' => '0')
),
'pk' => array('id'),
'fk' => array(),
'ix' => array(),
'uc' => array()
)
);
?>