Changeset 867 for trunk/Application


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.
Location:
trunk/Application
Files:
2 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  }
  • trunk/Application/Version.php

    r866 r867  
    77
    88$Version = '1.0';
    9 $Revision = 866; // Subversion revision
    10 $DatabaseRevision = 857; // Database structure revision
     9$Revision = 867; // Subversion revision
     10$DatabaseRevision = 867; // Database structure revision
    1111$ReleaseDate = strtotime('2016-02-05');
Note: See TracChangeset for help on using the changeset viewer.