source: trunk/filemanager/setup/tables_current.inc.php @ 3632

Revision 3632, 1.1 KB checked in by alexandrecorreia, 13 years ago (diff)

Ticket #1468 - Notificacao por email de uploads de arquivos enviados pelo modulo Filemanager

Line 
1<?php
2  /**************************************************************************\
3  * eGroupWare                                                               *
4  * http://www.egroupware.org                                                *
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
13        $phpgw_baseline = array
14        (
15                'phpgw_filemanager_notification' => array
16                (
17                        'fd' => array(
18                                'filemanager_id' => array('type' => 'auto','nullable' => False),
19                                'email_from' => array('type' => 'varchar','precision' => '100','nullable' => False),
20                                'email_to' => array('type' => 'text','nullable' => False)
21                        ),
22                        'pk' => array('filemanager_id'),
23                        'fk' => array(),
24                        'ix' => array(),
25                        'uc' => array()
26                )
27        );
28?>
Note: See TracBrowser for help on using the repository browser.