mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-25 12:01:30 +00:00
add schema update scripts for 1.2.2
This commit is contained in:
4
schema/upgrade-1.1.7-1.2.2-mysql.sql
Normal file
4
schema/upgrade-1.1.7-1.2.2-mysql.sql
Normal file
@@ -0,0 +1,4 @@
|
||||
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('MARK_UNREAD_ON_UPDATE', 1, 'false', 'Set articles as unread on update',3);
|
||||
|
||||
update ttrss_version set schema_version = 9;
|
||||
|
||||
8
schema/upgrade-1.1.7-1.2.2-pgsql.sql
Normal file
8
schema/upgrade-1.1.7-1.2.2-pgsql.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
begin;
|
||||
|
||||
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('MARK_UNREAD_ON_UPDATE', 1, 'false', 'Set articles as unread on update',3);
|
||||
|
||||
update ttrss_version set schema_version = 9;
|
||||
|
||||
commit;
|
||||
|
||||
Reference in New Issue
Block a user