Changeset 5683


Ignore:
Timestamp:
03/09/12 09:05:39 (12 years ago)
Author:
marcieli
Message:

Ticket #2486 - Corrigido problema com setup do expressoMail.

Location:
trunk/expressoMail1_2/setup
Files:
1 added
2 edited

Legend:

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

    r5604 r5683  
    1818         
    1919        $setup_info['expressoMail1_2']['tables'][]              = 'mail_attachment'; 
    20         $setup_info['expressoMail1_2']['tables'][]              = 'expressomail_label'; 
     20    $setup_info['expressoMail1_2']['tables'][]          = 'expressomail_label'; 
     21        $setup_info['expressoMail1_2']['tables'][]              = 'expressomail_message_followupflag'; 
    2122        $setup_info['expressoMail1_2']['tables'][]              = 'expressomail_followupflag'; 
    22         $setup_info['expressoMail1_2']['tables'][]              = 'expressomail_message_followupflag'; 
     23         
    2324         
    2425        $setup_info['expressoMail1_2']['enable']        = 1; 
  • trunk/expressoMail1_2/setup/tables_current.inc.php

    r5639 r5683  
    7878                        'uc' => array() 
    7979                 
    80         )); 
     80                ), 
     81         
     82                'mail_attachment' => array( 
     83                        'fd' => array( 
     84                                'id' => array('type' => 'auto','nullable' => False), 
     85                                'source' => array('type' => 'blob','nullable' => False), 
     86                                'type' => array('type' => 'varchar','precision' => '50','nullable' => False), 
     87                                'name' => array('type' => 'varchar','precision' => '255','nullable' => False), 
     88                'disposition' => array('type' => 'varchar','precision' => '20','nullable' => true), 
     89                                'size' => array('type' => 'int','precision' => '16','nullable' => False), 
     90                'dtstamp' => array('type' => 'int','precision' => '16','nullable' => False), 
     91                                'owner' => array('type' => 'int', 'precision' => '8','nullable' => True) 
     92                        ), 
     93                        'pk' => array('id'), 
     94                        'fk' => array(), 
     95                        'ix' => array(), 
     96                        'uc' => array() 
     97                ) 
     98        ); 
    8199?> 
Note: See TracChangeset for help on using the changeset viewer.