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

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

Importacao inicial do Expresso do Serpro

Line 
1<?php
2        /**************************************************************************\
3        * Expresso Administração                                                                                                                                 *
4        * by Joao Alfredo Knopik Junior (joao.alfredo@gmail.com, jakjr@celepar.pr.gov.br)        *
5        * -----------------------------------------------------------------------------------------------------*
6        *  This program is free software; you can redistribute it and/or modify it                                       *
7        *  under the terms of the GNU General Public License as published by the                                 *
8        *  Free Software Foundation; either version 2 of the License, or (at your                                        *
9        *  option) any later version.                                                                                                                                                                            *
10        \**************************************************************************/
11        $phpgw_baseline = array(
12                'phpgw_expressomail_contacts' => array(
13                        'fd' => array(
14                                'id_owner' => array( 'type' => 'int', 'precision' => 8, 'nullable' => false),
15                                'data' => array( 'type' => 'text')
16                        ),
17                        'pk' => array('id_owner'),
18                        'fk' => array(),
19                        'ix' => array(),
20                        'uc' => array()
21                )
22        );
23        $phpgw_baseline = array (
24                'phpgw_certificados' => array(
25                        'fd' => array(
26                                'email' => array( 'type' => 'varchar', 'precision' => 60, 'nullable' => false),
27                                'chave_publica' => array( 'type' => 'text'),
28                                'expirado' => array('type' => 'bool', 'default' => 'false')
29                        ),
30                        'pk' => array('email'),
31                        'fk' => array(),
32                        'ix' => array(),
33                        'uc' => array()
34                )
35        );
36/*
37        $phpgw_baseline = array(
38                'phpgw_expressomail_serverconfig' => array(
39                        'fd' => array(
40                                'id'            => array('type' => 'varchar','precision' => 50,'nullable' => false),
41                                'ip_smtp'       => array('type' => 'varchar','precision' => 255,'nullable' => false),
42                                'port_smtp'     => array('type' => 'varchar','precision' => 100,'nullable' => false)
43                        ),
44                        'pk' => array(),
45                        'fk' => array(),
46                        'ix' => array(),
47                        'uc' => array()
48                ),
49
50                'phpgw_expressomail_preferences' => array(
51                        'fd' => array(
52                                'user_id'       => array('type' => 'varchar','precision' => 50,'nullable' => false),
53                                'signtur'       => array('type' => 'varchar','precision' => 255,'nullable' => false)
54                        ),
55                        'pk' => array(),
56                        'fk' => array(),
57                        'ix' => array(),
58                        'uc' => array()
59                )
60        );
61*/
62?>
Note: See TracBrowser for help on using the repository browser.