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

improve password storage (use sha256 and long random salt)

bump schema
This commit is contained in:
Andrew Dolgov
2012-01-22 11:48:08 +04:00
parent 8689b8070b
commit e90053fe84
6 changed files with 76 additions and 34 deletions

View File

@@ -41,6 +41,7 @@ create table ttrss_users (id serial not null primary key,
full_name varchar(250) not null default '',
email_digest boolean not null default false,
last_digest_sent timestamp default null,
salt varchar(250) not null default '',
twitter_oauth text default null,
created timestamp default null);
@@ -228,7 +229,7 @@ create index ttrss_tags_post_int_id_idx on ttrss_tags(post_int_id);
create table ttrss_version (schema_version int not null);
insert into ttrss_version values (87);
insert into ttrss_version values (88);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,