Changeset 95 for trunk/Application/UpdateTrace.php
- Timestamp:
- Dec 6, 2021, 11:33:48 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/UpdateTrace.php
r92 r95 1 1 <?php 2 2 3 function FullInstall($Manager) 3 function FullInstall($Manager): void 4 4 { 5 5 $Manager->Execute('CREATE TABLE IF NOT EXISTS `SystemVersion` ( … … 29 29 } 30 30 31 function UpdateTo67($Manager) 31 function UpdateTo67($Manager): void 32 32 { 33 33 $Manager->Execute('RENAME TABLE `measure` TO `Measure`;'); … … 58 58 } 59 59 60 function UpdateTo79($Manager) 60 function UpdateTo79($Manager): void 61 61 { 62 62 $DbResult = $Manager->Execute('SELECT `DataTable`,`DataType` FROM `Measure`;'); … … 78 78 class Updates 79 79 { 80 function Get() 80 function Get(): array 81 81 { 82 82 return array(
Note:
See TracChangeset
for help on using the changeset viewer.