$op = $_REQUEST["op"];
- define('SCHEMA_VERSION', 9);
+ define('SCHEMA_VERSION', 10);
require_once "sanity_check.php";
require_once "config.php";
create table ttrss_version (schema_version int not null) TYPE=InnoDB;
-insert into ttrss_version values (9);
+insert into ttrss_version values (10);
create table ttrss_prefs_types (id integer not null primary key,
type_name varchar(100) not null) TYPE=InnoDB;
create table ttrss_version (schema_version int not null);
-insert into ttrss_version values (9);
+insert into ttrss_version values (10);
create table ttrss_prefs_types (id integer not null primary key,
type_name varchar(100) not null);
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('DIGEST_ENABLE', 1, 'false', 'Enable e-mail digest',1,
'This option enables sending daily digest of new (and unread) headlines on your configured e-mail address');
+update ttrss_version set schema_version = 10;
+
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('DIGEST_ENABLE', 1, 'false', 'Enable e-mail digest',1,
'This option enables sending daily digest of new (and unread) headlines on your configured e-mail address');
+update ttrss_version set schema_version = 10;
+