summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-11-20 08:45:44 +0100
committerAndrew Dolgov <[email protected]>2005-11-20 08:45:44 +0100
commit14c8eca7145b1773230d92d8ce1f61a569711621 (patch)
treee194a89e9370851027e7ecd661c1b157c33d3a73 /schema
parentdbd9e2f1df3bc5ab63caac9f58ad362432e53235 (diff)
fix ALLOW_DUPLICATE_POSTS description
Diffstat (limited to 'schema')
-rw-r--r--schema/ttrss_schema_mysql.sql2
-rw-r--r--schema/ttrss_schema_pgsql.sql2
2 files changed, 2 insertions, 2 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index 88f5dc907..3b1a18b4c 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -171,7 +171,7 @@ 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,help_text) values('ALLOW_DUPLICATE_POSTS', 1, 'true', 'Allow duplicate posts',1,
'This option is useful when you are reading several planet-type aggregators with partially colliding userbase.
- When disabled, it forces same posts from different feeds to appear only once');
+ When disabled, it forces same posts from different feeds to appear only once.');
create table ttrss_user_prefs (
owner_uid integer not null,
diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql
index 0fc70615c..a6c19bedb 100644
--- a/schema/ttrss_schema_pgsql.sql
+++ b/schema/ttrss_schema_pgsql.sql
@@ -162,7 +162,7 @@ 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,help_text) values('ALLOW_DUPLICATE_POSTS', 1, 'true', 'Allow duplicate posts',1,
'This option is useful when you are reading several planet-type aggregators with partially colliding userbase.
- When disabled, it forces same posts from different feeds to appear only once');
+ When disabled, it forces same posts from different feeds to appear only once.');
create table ttrss_user_prefs (
owner_uid integer not null references ttrss_users(id) on delete cascade,