all repos — honk @ c1bea2de5d114765b2743d07be741c9dd512f368

my fork of honk

forgot to add expiry column
Ted Unangst tedu@tedunangst.com
Sun, 20 Oct 2019 17:03:46 -0400
commit

c1bea2de5d114765b2743d07be741c9dd512f368

parent

491cb58e560433e806d23a957d94046f1e648c06

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M schema.sqlschema.sql

@@ -27,7 +27,7 @@

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);