Ignore:
Timestamp:
06/20/09 01:07:18 (15 years ago)
Author:
rafaelraymundo
Message:

Ticket #558 - Adicionada funcionalidade de assinatura e criptografia de e-mails.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/setup/tables_current.inc.php

    r468 r1035  
    1919                        'ix' => array(), 
    2020                        '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() 
    2135                ) 
    2236        ); 
Note: See TracChangeset for help on using the changeset viewer.