support transparent encryption for feed passwords, bump schema to drop length limit of ttrss_feeds.auth_pass
This commit is contained in:
7
sql/pgsql/migrations/148.sql
Normal file
7
sql/pgsql/migrations/148.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
alter table ttrss_feeds rename column auth_pass to auth_pass_old;
|
||||
alter table ttrss_feeds add column auth_pass text;
|
||||
update ttrss_feeds set auth_pass = auth_pass_old;
|
||||
alter table ttrss_feeds alter column auth_pass set not null;
|
||||
alter table ttrss_feeds drop column auth_pass_old;
|
||||
|
||||
update ttrss_version set schema_version = 148;
|
||||
Reference in New Issue
Block a user