Ignore:
Timestamp:
02/24/12 15:09:26 (12 years ago)
Author:
douglasz
Message:

Ticket #2486 - Atualizado o arquivo setup correções no salvamento de sinalizadores

File:
1 edited

Legend:

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

    r1035 r5547  
    3333            'ix' => array(), 
    3434            'uc' => array() 
     35                ), 
     36                 
     37                'expressomail_label' => array( 
     38                        'fd' => array( 
     39                                'id' => array('type' => 'auto','nullable' => False), 
     40                                'user_id' => array('type' => 'int', 'precision' => '8','nullable' => true), 
     41                                'name' => array('type' => 'varchar','precision' => '255','nullable' => true), 
     42                                'border_color' => array('type' => 'varchar','precision' => '7','nullable' => true), 
     43                                'background_color' => array('type' => 'varchar','precision' => '7','nullable' => true), 
     44                                'font_color' => array('type' => 'varchar','precision' => '7','nullable' => true) 
     45                        ), 
     46                        'pk' => array('id'), 
     47                        'fk' => array(), 
     48                        'ix' => array(), 
     49                        'uc' => array() 
     50                ), 
     51 
     52                'expressomail_followupflag' => array( 
     53                        'fd' => array( 
     54                                'id' => array('type' => 'auto','nullable' => False), 
     55                                'user_id' => array('type' => 'int', 'precision' => '8','nullable' => true), 
     56                                'name' => array('type' => 'varchar','precision' => '255','nullable' => False) 
     57                        ), 
     58                        'pk' => array('id'), 
     59                        'fk' => array(), 
     60                        'ix' => array(), 
     61                        'uc' => array() 
     62                ), 
     63         
     64                'expressomail_message_followupflag' => array( 
     65                        'fd' => array( 
     66                                'id' => array('type' => 'auto','nullable' => False), 
     67                                'followupflag_id' => array('type' => 'int', 'precision' => '8','nullable' => False),                                     
     68                                'border_color' => array('type' => 'varchar','precision' => '7','nullable' => true), 
     69                                'background_color' => array('type' => 'varchar','precision' => '7','nullable' => true), 
     70                                'font_color' => array('type' => 'varchar','precision' => '7','nullable' => true), 
     71                                'alarm_deadline' => array('type' => 'timestamp', 'nullable' => true), 
     72                                'done_deadline' => array('type' => 'timestamp', 'nullable' => true), 
     73                                'is_done' => array('type' => 'int', 'precision' => '8','nullable' => true) 
     74                        ), 
     75                        'pk' => array('id'), 
     76                        'fk' => array(), 
     77                        'ix' => array(), 
     78                        'uc' => array() 
     79                        ) 
    3580                ) 
     81                 
    3682        ); 
    3783?> 
Note: See TracChangeset for help on using the changeset viewer.