Changeset 882 for trunk/Application


Ignore:
Timestamp:
Sep 8, 2020, 5:00:04 PM (4 years ago)
Author:
chronos
Message:
  • Fixed: New monthly payment was not working after upgrade of to new SQL server.
Location:
trunk/Application
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Application/UpdateTrace.php

    r881 r882  
    21232123  $Manager->Execute('ALTER TABLE `User` CHANGE `LastIpAddress` `LastIpAddress` VARCHAR(45) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT "";');
    21242124  $Manager->Execute('ALTER TABLE `Log` CHANGE `IPAddress` `IPAddress` VARCHAR(45) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL;');
     2125}
     2126
     2127function UpdateTo882($Manager)
     2128{
     2129  $Manager->Execute('ALTER TABLE `FinanceMonthlyOverall` CHANGE `Investment` `Investment` INT(11) NOT NULL DEFAULT "0";');
    21252130}
    21262131
     
    22272232      870 => array('Revision' => 878, 'Function' => 'UpdateTo878'),
    22282233      878 => array('Revision' => 880, 'Function' => 'UpdateTo880'),
     2234      880 => array('Revision' => 882, 'Function' => 'UpdateTo882'),
    22292235    );
    22302236  }
  • trunk/Application/Version.php

    r881 r882  
    11<?php
    22
    3 $Revision = 881; // Subversion revision
    4 $DatabaseRevision = 880; // SQL structure revision
    5 $ReleaseTime = strtotime('2020-09-04');
     3$Revision = 882; // Subversion revision
     4$DatabaseRevision = 882; // SQL structure revision
     5$ReleaseTime = strtotime('2020-09-08');
Note: See TracChangeset for help on using the changeset viewer.