source: trunk/expressoMail1_2/setup/tables_current.inc.php @ 433

Revision 433, 1.8 KB checked in by rafaelraymundo, 16 years ago (diff)

Correção para atualizar corretamente o módulo de Email.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
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/*
24        $phpgw_baseline = array(
25                'phpgw_expressoMail_serverconfig' => array(
26                        'fd' => array(
27                                'id'            => array('type' => 'varchar','precision' => 50,'nullable' => false),
28                                'ip_smtp'       => array('type' => 'varchar','precision' => 255,'nullable' => false),
29                                'port_smtp'     => array('type' => 'varchar','precision' => 100,'nullable' => false)
30                        ),
31                        'pk' => array(),
32                        'fk' => array(),
33                        'ix' => array(),
34                        'uc' => array()
35                ),
36
37                'phpgw_expressoMail_preferences' => array(
38                        'fd' => array(
39                                'user_id'       => array('type' => 'varchar','precision' => 50,'nullable' => false),
40                                'signtur'       => array('type' => 'varchar','precision' => 255,'nullable' => false)
41                        ),
42                        'pk' => array(),
43                        'fk' => array(),
44                        'ix' => array(),
45                        'uc' => array()
46                )
47        );
48*/
49?>
Note: See TracBrowser for help on using the repository browser.