X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=schema%2Fttrss_schema_mysql.sql;h=bbc769070da8eae510fe34041d05526873184258;hb=c59d33a3a8e5b2aab15f893727227cc1e3bea212;hp=86261d6f4563b4b163121d746e3368fb958c2cc5;hpb=a219fec54d09f81da2686a8817dd67ae98872661;p=tt-rss.git diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql index 86261d6f..bbc76907 100644 --- a/schema/ttrss_schema_mysql.sql +++ b/schema/ttrss_schema_mysql.sql @@ -189,7 +189,7 @@ create table ttrss_tags (id integer primary key auto_increment, create table ttrss_version (schema_version int not null) TYPE=InnoDB; -insert into ttrss_version values (18); +insert into ttrss_version values (19); create table ttrss_prefs_types (id integer not null primary key, type_name varchar(100) not null) TYPE=InnoDB; @@ -286,6 +286,8 @@ insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) valu insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_PREFS_ENABLE_PAGINATION', 2, '', '', 1); +insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('_PREFS_PUBLISH_KEY', 2, '', '', 1); + create table ttrss_user_prefs ( owner_uid integer not null, pref_name varchar(250),