summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-01-22 11:48:08 +0400
committerAndrew Dolgov <[email protected]>2012-01-22 11:48:14 +0400
commite90053fe8400893190f6b91bb4b78abe481f2e7f (patch)
tree19bf80e9978cb3ef06583b0ebea8b8eef5fee106 /schema/ttrss_schema_mysql.sql
parent8689b8070bda50afe0d822cdd312a591227c3d7a (diff)
improve password storage (use sha256 and long random salt)
bump schema
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
-rw-r--r--schema/ttrss_schema_mysql.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index 04fa7f0de..e2815bf8b 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -44,6 +44,7 @@ create table ttrss_users (id integer primary key not null auto_increment,
full_name varchar(250) not null default '',
email_digest bool not null default false,
last_digest_sent datetime default null,
+ salt varchar(250) not null default '',
created datetime default null,
twitter_oauth longtext default null,
index (theme_id)) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
@@ -259,7 +260,7 @@ create table ttrss_tags (id integer primary key auto_increment,
create table ttrss_version (schema_version int not null) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
-insert into ttrss_version values (87);
+insert into ttrss_version values (88);
create table ttrss_enclosures (id integer primary key auto_increment,
content_url text not null,