summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-01-25 17:40:33 +0100
committerAndrew Dolgov <[email protected]>2008-01-25 17:40:33 +0100
commit5b8534ef6c2653f369b8e6aa993af83084d08585 (patch)
tree202993b5f842f9f07d15e0535ff5a04274b93070 /schema/ttrss_schema_mysql.sql
parente14a59be5ac535783fd1abfbff21ec7e202972ea (diff)
schema: add ttrss_feeds.update_method, 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 a63a4133d..240961d03 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -78,6 +78,7 @@ create table ttrss_feeds (id integer not null auto_increment primary key,
auth_pass_encrypted boolean not null default false,
last_viewed datetime default null,
last_update_started datetime default null,
+ update_method integer not null default 0,
index(owner_uid),
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE,
index(cat_id),
@@ -204,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 (30);
+insert into ttrss_version values (31);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,