summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_pgsql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-01-30 11:54:16 +0100
committerAndrew Dolgov <[email protected]>2008-01-30 11:54:16 +0100
commit2b6ed06b23041812d0319e5146426c06cbb50459 (patch)
tree38dbd5756cada0432c791e5a8370e601392998cf /schema/ttrss_schema_pgsql.sql
parent38426fb135bab4146d9e545be32a3ed6d93e4bf3 (diff)
schema: add ttrss_prefs.access_level, bump version
Diffstat (limited to 'schema/ttrss_schema_pgsql.sql')
-rw-r--r--schema/ttrss_schema_pgsql.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql
index 8ffce3513..228ce526f 100644
--- a/schema/ttrss_schema_pgsql.sql
+++ b/schema/ttrss_schema_pgsql.sql
@@ -184,7 +184,7 @@ create index ttrss_tags_owner_uid_index on ttrss_tags(owner_uid);
create table ttrss_version (schema_version int not null);
-insert into ttrss_version values (31);
+insert into ttrss_version values (32);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,
@@ -212,6 +212,7 @@ create table ttrss_prefs (pref_name varchar(250) not null primary key,
section_id integer not null references ttrss_prefs_sections(id) default 1,
short_desc text not null,
help_text text not null default '',
+ access_level integer not null default 0,
def_value text not null);
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('ENABLE_FEED_ICONS', 1, 'true', 'Enable icons in feedlist',3);