Changeset 829 for trunk/Application


Ignore:
Timestamp:
Apr 29, 2016, 11:54:31 PM (8 years ago)
Author:
chronos
Message:
  • Added: Experimental metod for calculating maximum speed limit according network links.
  • Modified: Lowered routeros netwatch period to 30 seconds.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Application/UpdateTrace.php

    r824 r829  
    20202020    ADD CONSTRAINT `NetworkInterfaceLatency_ibfk_1` FOREIGN KEY (`Interface`) REFERENCES `NetworkInterface` (`Id`);');
    20212021}
     2022
     2023/*
     2024function UpdateTo829($Manager)
     2025{
     2026  $Manager->Execute('ALTER TABLE `NetworkLinkType` '.
     2027    'ADD `MaxLinkSpeed` INT NOT NULL AFTER `Name`, '.
     2028    'ADD `MaxRealSpeed` INT NOT NULL AFTER `MaxLinkSpeed`, '.
     2029    'ADD `FullDuplex` INT NOT NULL AFTER `MaxRealSpeed`, '.
     2030    'ADD `Color` VARCHAR(6) NOT NULL AFTER `FullDuplex`');
     2031}
     2032*/
    20222033
    20232034class Updates
     
    21132124      817 => array('Revision' => 818, 'Function' => 'UpdateTo818'),
    21142125      818 => array('Revision' => 824, 'Function' => 'UpdateTo824'),
     2126      //824 => array('Revision' => 829, 'Function' => 'UpdateTo829'),
    21152127    ));
    21162128  }
Note: See TracChangeset for help on using the changeset viewer.