* fix 148 migration for pgsql not setting default value of ttrss_feeds.auth_pass breaking OPML import

* replace no-op migrations for mysql with 'select 1'
This commit is contained in:
Andrew Dolgov 2025-04-17 11:48:29 +03:00
parent 60606aaa97
commit f7199a47c2
No known key found for this signature in database
GPG Key ID: 1A56B4FA25D4AF2A
4 changed files with 4 additions and 2 deletions

View File

@ -6,7 +6,7 @@ class Config {
const T_STRING = 2;
const T_INT = 3;
const SCHEMA_VERSION = 148;
const SCHEMA_VERSION = 149;
/** override default values, defined below in _DEFAULTS[], prefixing with _ENVVAR_PREFIX:
*

View File

@ -1 +1 @@
select 1;

View File

@ -0,0 +1 @@
select 1;

View File

@ -0,0 +1 @@
alter table ttrss_feeds alter column auth_pass set default '';