source: contrib/listAdmin/setup/tables_current.inc.php @ 3312

Revision 3312, 1.2 KB checked in by rafaelraymundo, 14 years ago (diff)

Ticket #1174 - Disponibilização do módulo de Listas(Mailman)

Line 
1<?php
2        /*******************************************************************************\
3        *  This program is free software; you can redistribute it and/or modify it      *
4        *  under the terms of the GNU General Public License as published by the        *
5        *  Free Software Foundation; either version 2 of the License, or (at your       *
6        *  option) any later version.                                                   *
7        \*******************************************************************************/
8
9        $phpgw_baseline = array(
10                'phpgw_expressoadmin' => array(
11                        'fd' => array(
12                                'manager_lid'   => array('type' => 'varchar','precision' => 50,'nullable' => false),
13                                'context'               => array('type' => 'varchar','precision' => 255,'nullable' => false),
14                                'acl'                   => array('type' => 'int','precision' => 8,'nullable' => false)
15                        ),
16                        'pk' => array(),
17                        'fk' => array(),
18                        'ix' => array(),
19                        'uc' => array()
20                ),
21               
22                'phpgw_expressoadmin_apps' => array(
23                        'fd' => array(
24                                'manager_lid'   => array('type' => 'varchar','precision' => 50,'nullable' => false),
25                                'context'               => array('type' => 'varchar','precision' => 255,'nullable' => false),
26                                'app'                   => array('type' => 'varchar','precision' => 100,'nullable' => false)
27                        ),
28                        'pk' => array(),
29                        'fk' => array(),
30                        'ix' => array(),
31                        'uc' => array()
32                ),
33
34        );
35?>
Note: See TracBrowser for help on using the repository browser.