added private_newtwork_cidr to system_information table (#341)

* added private_newtwork_cidr to system_information table

* db schema upgrade to add system_information.private_network_cidr in 0.9.2

* increase size of system_information.private_network_cidr to varchar(8192)
This commit is contained in:
Dave Horton
2024-08-18 12:49:06 -04:00
committed by GitHub
parent 2d2b98dab5
commit ed71abd675
5 changed files with 30 additions and 11 deletions

View File

@@ -33,6 +33,10 @@ SystemInformation.fields = [
name: 'monitoring_domain_name',
type: 'string',
},
{
name: 'private_network_cidr',
type: 'string',
},
];
module.exports = SystemInformation;