Ignore:
Timestamp:
07/10/12 12:23:24 (12 years ago)
Author:
thiago
Message:

Ticket #2952 - Atualizacao no conceito e nas tabelas utilizadas para a nova funcionalidade.

Location:
sandbox/2.4.2-expresso1
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • sandbox/2.4.2-expresso1/expressoMail1_2/setup/setup.inc.php

    r6528 r6750  
    1313$setup_info['expressoMail1_2']['name'] = 'expressoMail1_2'; 
    1414$setup_info['expressoMail1_2']['title'] = 'Expresso Mail'; 
    15 $setup_info['expressoMail1_2']['version'] = '2.4.8'; 
     15$setup_info['expressoMail1_2']['version'] = '2.4.8.1'; 
    1616$setup_info['expressoMail1_2']['app_order'] = 2; 
    1717$setup_info['expressoMail1_2']['tables'][] = 'phpgw_certificados'; 
  • sandbox/2.4.2-expresso1/expressoMail1_2/setup/tables_current.inc.php

    r6528 r6750  
    7878                                'alarm_deadline' => array('type' => 'timestamp', 'nullable' => true), 
    7979                                'done_deadline' => array('type' => 'timestamp', 'nullable' => true), 
    80                                 'is_done' => array('type' => 'int', 'precision' => '8','nullable' => true) 
     80                                'is_done' => array('type' => 'int', 'precision' => '2','nullable' => true), 
     81                                'sent' => array('type' => 'int', 'precision' => '2','nullable' => false, 'default' => 0) 
    8182                        ), 
    8283                        'pk' => array('id'), 
     
    9697                                'size' => array('type' => 'int','precision' => '16','nullable' => False), 
    9798                'dtstamp' => array('type' => 'int','precision' => '16','nullable' => False), 
    98                                 'owner' => array('type' => 'int', 'precision' => '8','nullable' => True) 
     99                                'owner' => array('type' => 'int', 'precision' => '8','nullable' => True), 
     100                                 
    99101                        ), 
    100102                        'pk' => array('id'), 
  • sandbox/2.4.2-expresso1/expressoMail1_2/setup/tables_update.inc.php

    r6543 r6750  
    312312            return $GLOBALS['setup_info']['expressoMail1_2']['currentver']; 
    313313        } 
     314         
     315        $test[] = '2.4.8'; 
     316        function expressoMail1_2_upgrade2_4_8() { 
     317                $oProc = $GLOBALS['phpgw_setup']->oProc; 
     318 
     319                $oProc->query("ALTER TABLE expressomail_message_followupflag ADD COLUMN sent smallint not null default 0"); 
     320 
     321                $GLOBALS['setup_info']['expressoMail1_2']['currentver'] = '2.4.8.1'; 
     322            return $GLOBALS['setup_info']['expressoMail1_2']['currentver']; 
     323        } 
    314324?> 
  • sandbox/2.4.2-expresso1/prototype/config/followupflagged.ini

    r6016 r6750  
    3232doneDeadline = done_deadline 
    3333isDone = is_done 
     34isSent = sent 
    3435borderColor = border_color 
    3536backgroundColor = background_color 
Note: See TracChangeset for help on using the changeset viewer.