source: branches/2.2/expressoAdmin1_2/setup/tables_current.inc.php @ 414

Revision 414, 2.6 KB checked in by niltonneto, 16 years ago (diff)

Alterações feitas por João Alfredo.
Email: jakjr@…

  • 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_expressoadmin' => array(
14                        'fd' => array(
15                                'manager_lid'   => array('type' => 'varchar','precision' => 50,'nullable' => false),
16                                'context'               => array('type' => 'varchar','precision' => 255,'nullable' => false),
17                                'acl'                   => array('type' => 'int','precision' => 8,'nullable' => false)
18                        ),
19                        'pk' => array(),
20                        'fk' => array(),
21                        'ix' => array(),
22                        'uc' => array()
23                ),
24               
25                'phpgw_expressoadmin_apps' => array(
26                        'fd' => array(
27                                'manager_lid'   => array('type' => 'varchar','precision' => 50,'nullable' => false),
28                                'context'               => array('type' => 'varchar','precision' => 255,'nullable' => false),
29                                'app'                   => array('type' => 'varchar','precision' => 100,'nullable' => false)
30                        ),
31                        'pk' => array(),
32                        'fk' => array(),
33                        'ix' => array(),
34                        'uc' => array()
35                ),
36
37                'phpgw_expressoadmin_passwords' => array(
38                        'fd' => array(
39                                'uid'           => array('type' => 'varchar','precision' => 100,'nullable' => false),
40                                'password'      => array('type' => 'varchar','precision' => 255,'nullable' => false)
41                        ),
42                        'pk' => array(),
43                        'fk' => array(),
44                        'ix' => array(),
45                        'uc' => array()
46                ),
47               
48                'phpgw_expressoadmin_log' => array(
49                        'fd' => array(
50                                'date'                  => array('type' => 'timestamp','nullable' => false),
51                                'manager'               => array('type' => 'varchar','precision' => 50,'nullable' => false),
52                                'action'                => array('type' => 'varchar','precision' => 255,'nullable' => false),
53                                'userinfo'              => array('type' => 'varchar','precision' => 255,'nullable' => false)
54                        ),
55                        'pk' => array(),
56                        'fk' => array(),
57                        'ix' => array(),
58                        'uc' => array()
59                ),
60               
61                'phpgw_expressoadmin_samba' => array(
62                        'fd' => array(
63                                'samba_domain_name' => array( 'type' => 'varchar', 'precision' => 50),
64                                'samba_domain_sid' => array( 'type' => 'varchar', 'precision' => 100)
65                        ),
66                        'pk' => array('samba_domain_name'),
67                        'fk' => array(),
68                        'ix' => array(),
69                        'uc' => array()
70                )
71        );
72?>
Note: See TracBrowser for help on using the repository browser.