diff options
author | David Timber <mieabby@gmail.com> | 2021-08-16 21:35:20 +1000 |
---|---|---|
committer | David Timber <mieabby@gmail.com> | 2021-08-16 21:35:20 +1000 |
commit | a161674bcee21384a73834e3ca16ad3bf1c70cf3 (patch) | |
tree | 3a42a20055ce6bed9eb679e1bd169a03b0ae5528 /src/data/sql/hi-create.sql | |
parent | f8afe0c17c248e7eda1be258786a089f5bf6c3bf (diff) |
Protocol change: change hostinfo uptime ...
* Change hostinfo parent_uptime and child_uptime to uint32_t (138 years
is a long time)
Diffstat (limited to 'src/data/sql/hi-create.sql')
-rw-r--r-- | src/data/sql/hi-create.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/data/sql/hi-create.sql b/src/data/sql/hi-create.sql index 8859248..52a7596 100644 --- a/src/data/sql/hi-create.sql +++ b/src/data/sql/hi-create.sql @@ -3,8 +3,8 @@ CREATE TABLE `prne-hi` ( `org_id` binary(16) DEFAULT NULL, `inserted` datetime NOT NULL, `updated` datetime NOT NULL, - `parent_uptime` bigint(20) unsigned DEFAULT NULL, - `child_uptime` bigint(20) unsigned DEFAULT NULL, + `parent_uptime` int(10) unsigned DEFAULT NULL, + `child_uptime` int(10) unsigned DEFAULT NULL, `bne_cnt` bigint(20) unsigned DEFAULT NULL, `infect_cnt` bigint(20) unsigned DEFAULT NULL, `parent_pid` int(11) unsigned DEFAULT NULL, |