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.
File:
1 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  }
Note: See TracChangeset for help on using the changeset viewer.