forgot to add expiry column

This commit is contained in:
Ted Unangst 2019-10-20 17:03:46 -04:00
parent dbb376d883
commit 77de84d5a0
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ create index idx_hfcsuser on hfcs(userid);
create table config (key text, value text);
create table users (userid integer primary key, username text, hash text, displayname text, about text, pubkey text, seckey text, options text);
create table auth (authid integer primary key, userid integer, hash text);
create table auth (authid integer primary key, userid integer, hash text, expiry text);
CREATE index idxusers_username on users(username);
CREATE index idxauth_userid on auth(userid);
CREATE index idxauth_hash on auth(hash);