summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-03-07 12:25:44 +0100
committerAndrew Dolgov <[email protected]>2006-03-07 12:25:44 +0100
commit7f16656eb7aea169fca6732ccd74ceffd13a1984 (patch)
tree2f3f12f9e8a4c70e0e4b319a3f2f6e64c0563a63 /schema/ttrss_schema_mysql.sql
parent68511f86ac18cac0a8484b2c34f625fb4f2f3b99 (diff)
remove support for plain-text passwords
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 c2357f5b5..a5a6f1db4 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -34,7 +34,8 @@ create table ttrss_users (id integer primary key not null auto_increment,
index (theme_id),
foreign key (theme_id) references ttrss_themes(id)) TYPE=InnoDB;
-insert into ttrss_users (login,pwd_hash,access_level) values ('admin', 'password', 10);
+insert into ttrss_users (login,pwd_hash,access_level) values ('admin',
+ 'SHA1:5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8', 10);
create table ttrss_feed_categories(id integer not null primary key auto_increment,
owner_uid integer not null,