Ignore:
Timestamp:
06/01/12 17:21:49 (12 years ago)
Author:
cristiano
Message:

Ticket #2768 - Migração dos contatos dinamicos para novo padrão

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sandbox/2.4.1-3/expressoMail1_2/setup/tables_current.inc.php

    r5981 r6386  
    1212                'phpgw_expressomail_contacts' => array( 
    1313                        'fd' => array( 
    14                                 'id_owner' => array( 'type' => 'int', 'precision' => 8, 'nullable' => false), 
    15                                 'data' => array( 'type' => 'text') 
     14                                'id' => array('type' => 'auto','nullable' => False), 
     15                                'owner' => array('type' => 'int','precision' => '16','nullable' => False), 
     16                                'name' => array('type' => 'varchar','precision' => '100','nullable' => true), 
     17                                'mail' => array('type' => 'varchar','precision' => '100','nullable' => False), 
     18                                'timestamp' => array('type' => 'int','precision' => '16','nullable' => False), 
    1619                        ), 
    17                         'pk' => array('id_owner'), 
     20                        'pk' => array('id'), 
    1821                        'fk' => array(), 
    1922                        'ix' => array(), 
    2023                        'uc' => array() 
    2124                ), 
     25                 
    2226        'phpgw_certificados' => array( 
    2327            'fd' => array( 
Note: See TracChangeset for help on using the changeset viewer.