From 46dbd20e4ba87f90ef1bb1974657ef8ff6760f5f Mon Sep 17 00:00:00 2001 From: Jean-Louis Huynen Date: Fri, 26 Apr 2019 14:40:36 +0200 Subject: [PATCH] fix: user: timez / timestampz typo in DB model --- passivessl.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/passivessl.sql b/passivessl.sql index 7e55d92..89ebd65 100644 --- a/passivessl.sql +++ b/passivessl.sql @@ -108,7 +108,7 @@ CREATE TABLE public."sessionRecord"( dst_port int4 NOT NULL, src_port int4 NOT NULL, hash_ja3 bytea NOT NULL, - "timestamp" time(0) with time zone, + "timestamp" timestamp(0) with time zone, CONSTRAINT "sessionRecord_pk" PRIMARY KEY (id) );