mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-08-07 06:37:44 +02:00
* 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:
parent
60606aaa97
commit
f7199a47c2
@ -6,7 +6,7 @@ class Config {
|
|||||||
const T_STRING = 2;
|
const T_STRING = 2;
|
||||||
const T_INT = 3;
|
const T_INT = 3;
|
||||||
|
|
||||||
const SCHEMA_VERSION = 148;
|
const SCHEMA_VERSION = 149;
|
||||||
|
|
||||||
/** override default values, defined below in _DEFAULTS[], prefixing with _ENVVAR_PREFIX:
|
/** override default values, defined below in _DEFAULTS[], prefixing with _ENVVAR_PREFIX:
|
||||||
*
|
*
|
||||||
|
@ -1 +1 @@
|
|||||||
|
select 1;
|
||||||
|
1
sql/mysql/migrations/149.sql
Normal file
1
sql/mysql/migrations/149.sql
Normal file
@ -0,0 +1 @@
|
|||||||
|
select 1;
|
1
sql/pgsql/migrations/149.sql
Normal file
1
sql/pgsql/migrations/149.sql
Normal file
@ -0,0 +1 @@
|
|||||||
|
alter table ttrss_feeds alter column auth_pass set default '';
|
Loading…
Reference in New Issue
Block a user