summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.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_mysql.sql
parent38426fb135bab4146d9e545be32a3ed6d93e4bf3 (diff)
schema: add ttrss_prefs.access_level, bump version
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
-rw-r--r--schema/ttrss_schema_mysql.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index 240961d03..04f740281 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -205,7 +205,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 (31);
+insert into ttrss_version values (32);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,
@@ -235,6 +235,7 @@ create table ttrss_prefs (pref_name varchar(250) not null primary key,
section_id integer not null default 1,
short_desc text not null,
help_text varchar(250) not null default '',
+ access_level integer not null default 0,
def_value text not null,
index(type_id),
foreign key (type_id) references ttrss_prefs_types(id),