summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-01-23 09:44:50 +0100
committerAndrew Dolgov <[email protected]>2008-01-23 09:44:50 +0100
commit3c50da8334f5c7d09c531b14d14d26d7309ddeb0 (patch)
tree0357320962042774212c9e70c92ce32330cf8b7d /schema/ttrss_schema_mysql.sql
parent22f3e356c8d0f2178c1d401f9bb096d3ea142a8f (diff)
schema: add ttrss_feeds.last_update_started, 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 e7a8eebbd..a63a4133d 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -77,6 +77,7 @@ create table ttrss_feeds (id integer not null auto_increment primary key,
cache_images boolean not null default false,
auth_pass_encrypted boolean not null default false,
last_viewed datetime default null,
+ last_update_started datetime default null,
index(owner_uid),
foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE,
index(cat_id),
@@ -203,7 +204,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 (29);
+insert into ttrss_version values (30);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,