alsmanager_lib 3.0.18 → 3.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/modules.js +1 -1
- package/package.json +1 -1
package/lib/modules.js
CHANGED
|
@@ -2156,7 +2156,7 @@ function createSwitchPatchPropertiesMySQLObj(id_device, dev_prop) {
|
|
|
2156
2156
|
return obj;
|
|
2157
2157
|
}
|
|
2158
2158
|
function insertSwitchPatchPropertiesSQLite(id_device, dev_prop) {
|
|
2159
|
-
var query = "insert into device_switch (id_device, num_ports, num_poe) values ";
|
|
2159
|
+
var query = "insert into device_switch (id_device, num_ports, num_poe, tipo) values ";
|
|
2160
2160
|
query += "(" + id_device + ", " + dev_prop.num_ports + ", " + dev_prop.num_poe + ", '" + dev_prop.tipo + "')";
|
|
2161
2161
|
return query;
|
|
2162
2162
|
}
|