needs to be tz aware pg columns

This commit is contained in:
Em 2021-07-08 10:24:01 -04:00
parent e8a6a37934
commit a9a29518b0
1 changed files with 3 additions and 3 deletions

View File

@ -20,9 +20,9 @@ create table proxies (
exit_ipv6 inet,
proxy_type text,
status text default 'unscanned',
last_seen timestamp default 'epoch',
last_checked timestamp default 'epoch',
submitted_at timestamp,
last_seen timestamptz default 'epoch',
last_checked timestamptz default 'epoch',
submitted_at timestamptz,
comment text,
num_failures int default 0,
recheck bool default false