Ignore:
Timestamp:
Feb 6, 2016, 12:54:26 AM (8 years ago)
Author:
chronos
Message:
  • Added: Export task TimeQueued time which is different to TimeStart time which is actual time when task was started to be processed.
  • Fixed: Updated also export of DBC files.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Application/UpdateTrace.php

    r862 r867  
    29382938}
    29392939
     2940function UpdateTo867($Manager)
     2941{
     2942  $Manager->Execute('ALTER TABLE `ExportTask` ADD `TimeQueued` DATETIME NOT NULL AFTER `Id`;');
     2943  $Manager->Execute('UPDATE `ExportTask` SET `TimeQueued` = `TimeStart`');
     2944  $Manager->Execute('ALTER TABLE `ExportTask` CHANGE `TimeStart` `TimeStart` DATETIME NULL;');
     2945}
     2946
    29402947class Updates
    29412948{
     
    29742981  848 => array('Revision' => 849, 'Function' => 'UpdateTo849'),
    29752982  849 => array('Revision' => 857, 'Function' => 'UpdateTo857'),
     2983  857 => array('Revision' => 867, 'Function' => 'UpdateTo867'),
    29762984    ));
    29772985  }
Note: See TracChangeset for help on using the changeset viewer.