1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 19:05:55 +00:00

schema: add separate otp_secret column

This commit is contained in:
Andrew Dolgov
2021-03-05 17:16:48 +03:00
parent ecb94ec23d
commit 2aed79d729
5 changed files with 7 additions and 1 deletions

View File

@@ -50,6 +50,7 @@ create table ttrss_users (id serial not null primary key,
salt varchar(250) not null default '',
twitter_oauth text default null,
otp_enabled boolean not null default false,
otp_secret varchar(250) default null,
resetpass_token varchar(250) default null,
created timestamp default null);