Changeset 5981


Ignore:
Timestamp:
04/20/12 14:57:17 (12 years ago)
Author:
douglasz
Message:

Ticket #2633 - Adequar implementação de flags de marcadores e sinalizadores no IMAP.

Location:
trunk/expressoMail1_2/setup
Files:
3 edited

Legend:

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

    r5968 r5981  
    1313$setup_info['expressoMail1_2']['name'] = 'expressoMail1_2'; 
    1414$setup_info['expressoMail1_2']['title'] = 'Expresso Mail'; 
    15 $setup_info['expressoMail1_2']['version'] = '2.4.4'; 
     15$setup_info['expressoMail1_2']['version'] = '2.4.5'; 
    1616$setup_info['expressoMail1_2']['app_order'] = 2; 
    1717$setup_info['expressoMail1_2']['tables'][] = 'phpgw_expressomail_contacts'; 
  • trunk/expressoMail1_2/setup/tables_current.inc.php

    r5966 r5981  
    4242                                'border_color' => array('type' => 'varchar','precision' => '7','nullable' => true), 
    4343                                'background_color' => array('type' => 'varchar','precision' => '7','nullable' => true), 
    44                                 'font_color' => array('type' => 'varchar','precision' => '7','nullable' => true) 
     44                                'font_color' => array('type' => 'varchar','precision' => '7','nullable' => true), 
     45                                'slot' => array('type' => 'int', 'precision' => '8', 'nullable' => False) 
    4546                        ), 
    4647                        'pk' => array('id'), 
     
    6667                                'id' => array('type' => 'auto','nullable' => False), 
    6768                                'followupflag_id' => array('type' => 'int', 'precision' => '8','nullable' => False),     
    68                                 'message_id' => array('type' => 'varchar', 'precision' => '100','nullable' => true),                             
     69                                'message_id' => array('type' => 'varchar', 'precision' => '100','nullable' => False),                            
    6970                                'border_color' => array('type' => 'varchar','precision' => '7','nullable' => true), 
    7071                                'background_color' => array('type' => 'varchar','precision' => '7','nullable' => true), 
  • trunk/expressoMail1_2/setup/tables_update.inc.php

    r5969 r5981  
    251251        } 
    252252         
     253        $test[] = '2.4.4'; 
     254        function expressoMail1_2_upgrade2_4_4() { 
     255            $oProc = $GLOBALS['phpgw_setup']->oProc; 
     256            $oProc->query("ALTER TABLE expressomail_label ADD COLUMN slot bigint not null default 'unknown' "); 
     257  
     258            $GLOBALS['setup_info']['expressoMail1_2']['currentver'] = '2.4.5'; 
     259            return $GLOBALS['setup_info']['expressoMail1_2']['currentver']; 
     260        } 
     261         
    253262?> 
Note: See TracChangeset for help on using the changeset viewer.