add new totp_secret column to sql config

This commit is contained in:
syeopite 2021-07-16 14:47:11 -07:00
parent c7b3657878
commit c8c35e105f
No known key found for this signature in database
GPG Key ID: 6FA616E5A5294A82
1 changed files with 1 additions and 0 deletions

View File

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