diff options
author | Jose M. Guisado <jguisado@soleta.eu> | 2023-08-23 15:21:53 +0200 |
---|---|---|
committer | Jose M. Guisado <jguisado@soleta.eu> | 2023-08-23 15:34:44 +0200 |
commit | 4cc2ca61fdf9b899a41ab60bfe58eeacd113ac0e (patch) | |
tree | 8902e88e077db5951e578d5f6efb48944b4f4ed2 /src/dbi.h | |
parent | 44745a3f22875af77da8f6e25ebc48b9840964ac (diff) |
dbi: add server_id to og_computer struct
Extend og_dbi_get_computer_info to fetch "identorno" column from
"ordenadores". "identorno" holds the row id value from the "entornos"
table (valid ogserver addresses).
Extend og_computer struct with a new field: "server_id" that will store
the value of "identorno" column fetched from the database.
Diffstat (limited to 'src/dbi.h')
-rw-r--r-- | src/dbi.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -74,6 +74,7 @@ struct og_legacy_partition { struct og_computer { unsigned int procedure_id; unsigned int hardware_id; + unsigned int server_id; unsigned int repo_id; unsigned int center; unsigned int room; |