support transparent encryption for feed passwords, bump schema to drop length limit of ttrss_feeds.auth_pass
This commit is contained in:
3
sql/mysql/migrations/148.sql
Normal file
3
sql/mysql/migrations/148.sql
Normal file
@@ -0,0 +1,3 @@
|
||||
alter table ttrss_feeds change auth_pass auth_pass text not null;
|
||||
|
||||
update ttrss_version set schema_version = 148;
|
||||
@@ -121,7 +121,7 @@ create table ttrss_feeds (id integer not null auto_increment primary key,
|
||||
favicon_is_custom boolean default null,
|
||||
site_url varchar(250) not null default '',
|
||||
auth_login varchar(250) not null default '',
|
||||
auth_pass varchar(250) not null default '',
|
||||
auth_pass text not null default '',
|
||||
parent_feed integer default null,
|
||||
private bool not null default false,
|
||||
rtl_content bool not null default false,
|
||||
|
||||
Reference in New Issue
Block a user