1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-08 11:39:16 +00:00

schema: add ttrss_prefs.access_level, bump version

This commit is contained in:
Andrew Dolgov
2008-01-30 11:54:16 +01:00
parent 38426fb135
commit 2b6ed06b23
5 changed files with 17 additions and 3 deletions

View File

@@ -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);