add new totp_secret column to sql config

This commit is contained in:
syeopite 2021-07-16 14:47:11 -07:00
parent ba067e3deb
commit 71f3053c7b
No known key found for this signature in database
GPG Key ID: A73C186DA3955A1A

View File

@ -13,6 +13,7 @@ CREATE TABLE IF NOT EXISTS public.users
token text,
watched text[],
feed_needs_update boolean,
totp_secret VARCHAR(128)
CONSTRAINT users_email_key UNIQUE (email)
);