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

Revision 2, 1.5 KB checked in by niltonneto, 17 years ago (diff)

Removida todas as tags usadas pelo CVS ($Id, $Source).
Primeira versão no CVS externo.

  • 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
12        $phpgw_baseline = array(
13                'phpgw_expressoMail_serverconfig' => array(
14                        'fd' => array(
15                                'id'            => array('type' => 'varchar','precision' => 50,'nullable' => false),
16                                'ip_smtp'       => array('type' => 'varchar','precision' => 255,'nullable' => false),
17                                'port_smtp'     => array('type' => 'varchar','precision' => 100,'nullable' => false)
18                        ),
19                        'pk' => array(),
20                        'fk' => array(),
21                        'ix' => array(),
22                        'uc' => array()
23                ),
24
25                'phpgw_expressoMail_preferences' => array(
26                        'fd' => array(
27                                'user_id'       => array('type' => 'varchar','precision' => 50,'nullable' => false),
28                                'signtur'       => array('type' => 'varchar','precision' => 255,'nullable' => false)
29                        ),
30                        'pk' => array(),
31                        'fk' => array(),
32                        'ix' => array(),
33                        'uc' => array()
34                )
35        );
36?>
Note: See TracBrowser for help on using the repository browser.