mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-29 07:31:29 +00:00
add last_login field to ttrss_users
This commit is contained in:
@@ -10,6 +10,7 @@ drop table ttrss_users;
|
||||
create table ttrss_users (id serial not null primary key,
|
||||
login varchar(120) not null unique,
|
||||
pwd_hash varchar(250) not null,
|
||||
last_login timestamp default null,
|
||||
access_level integer not null default 0);
|
||||
|
||||
insert into ttrss_users (login,pwd_hash,access_level) values ('admin', 'password', 10);
|
||||
|
||||
Reference in New Issue
Block a user