Changeset 6750
- Timestamp:
- 07/10/12 12:23:24 (11 years ago)
- 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 13 13 $setup_info['expressoMail1_2']['name'] = 'expressoMail1_2'; 14 14 $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'; 16 16 $setup_info['expressoMail1_2']['app_order'] = 2; 17 17 $setup_info['expressoMail1_2']['tables'][] = 'phpgw_certificados'; -
sandbox/2.4.2-expresso1/expressoMail1_2/setup/tables_current.inc.php
r6528 r6750 78 78 'alarm_deadline' => array('type' => 'timestamp', 'nullable' => true), 79 79 '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) 81 82 ), 82 83 'pk' => array('id'), … … 96 97 'size' => array('type' => 'int','precision' => '16','nullable' => False), 97 98 '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 99 101 ), 100 102 'pk' => array('id'), -
sandbox/2.4.2-expresso1/expressoMail1_2/setup/tables_update.inc.php
r6543 r6750 312 312 return $GLOBALS['setup_info']['expressoMail1_2']['currentver']; 313 313 } 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 } 314 324 ?> -
sandbox/2.4.2-expresso1/prototype/config/followupflagged.ini
r6016 r6750 32 32 doneDeadline = done_deadline 33 33 isDone = is_done 34 isSent = sent 34 35 borderColor = border_color 35 36 backgroundColor = background_color
Note: See TracChangeset
for help on using the changeset viewer.