source: branches/2.2/expressoMail1_2/setup/tables_current.inc.php @ 4688

Revision 4688, 2.1 KB checked in by alexandrecorreia, 13 years ago (diff)

Ticket #2083 - Melhorias no leitor de RSS do expressoMail

  • 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        'phpgw_certificados' => array(
23            'fd' => array(
24                'email' => array( 'type' => 'varchar', 'precision' => 60, 'nullable' => false),
25                'chave_publica' => array( 'type' => 'text'),
26                'expirado' => array('type' => 'bool', 'default' => 'false'),
27                'revogado' => array('type' => 'bool', 'default' => 'false'),
28                'serialnumber' => array('type' => 'int', 'precision' => 8, 'nullable' => false),
29                'authoritykeyidentifier' => array( 'type' => 'text', 'nullable' => false),
30            ),
31            'pk' => array('email','serialnumber','authoritykeyidentifier'),
32            'fk' => array(),
33            'ix' => array(),
34            'uc' => array()
35                ),
36                'phpgw_userrss' => array(
37                        'fd' => array(
38                                'uid'           => array('type' => 'int', 'nullable' => false  ),
39                                'rss_url'       => array('type' => 'varchar', 'precision' => 1000 ),
40                                'name'          => array('type' => 'varchar', 'precision' => 50)
41                        ),
42                        'pk' => array('uid','rss_url'),
43                        'fk' => array(),
44            'ix' => array(),
45            'uc' => array()
46                )
47        );
48?>
Note: See TracBrowser for help on using the repository browser.