source: companies/serpro/emailadmin/setup/tables_baseline.inc.php @ 903

Revision 903, 1.7 KB checked in by niltonneto, 15 years ago (diff)

Importacao inicial do Expresso do Serpro

Line 
1<?php
2        /**************************************************************************\
3        * EGroupWare                                                               *
4        * http://www.egroupware.org                                                *
5        * http://www.phpgw.de                                                      *
6        * Author: lkneschke@phpgw.de                                               *
7        * --------------------------------------------                             *
8        *  This program is free software; you can redistribute it and/or modify it *
9        *  under the terms of the GNU General Public License as published by the   *
10        *  Free Software Foundation; either version 2 of the License, or (at your  *
11        *  option) any later version.                                              *
12        \**************************************************************************/
13
14
15        $phpgw_baseline = array(
16                'phpgw_emailadmin' => array(
17                        'fd' => array(
18                                'profileID'     => array('type' => 'auto', 'nullable' => false),
19                                'smtpServer'    => array('type' => 'varchar', 'precision' => 80),
20                                'smtpPort'      => array('type' => 'int', 'precision' => 4),
21                                'smtpAuth'      => array('type' => 'varchar', 'precision' => 3),
22                                'ldapServername' => array('type' => 'varchar', 'precision' => 80),
23                                'ldapBasedn'    => array('type' => 'varchar', 'precision' => 200),
24                                'ldapAdmindn'   => array('type' => 'varchar', 'precision' => 200),
25                                'ldapAdminpw'   => array('type' => 'varchar', 'precision' => 30),
26                                'ldapUseDefault' => array('type' => 'varchar', 'precision' => 3),
27                                'description'   => array('type' => 'varchar', 'precision' => 200)
28                        ),
29                        'pk' => array('profileID'),
30                        'fk' => array(),
31                        'ix' => array(),
32                        'uc' => array()
33                )
34        );
35?>
Note: See TracBrowser for help on using the repository browser.