1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-07 19:29:15 +00:00

schema: add ttrss_feeds.last_update_started, bump version

This commit is contained in:
Andrew Dolgov
2008-01-23 09:44:50 +01:00
parent 22f3e356c8
commit 3c50da8334
6 changed files with 16 additions and 3 deletions

View File

@@ -69,6 +69,7 @@ create table ttrss_feeds (id serial not null primary key,
rtl_content boolean not null default false,
cache_images boolean not null default false,
last_viewed timestamp default null,
last_update_started timestamp default null,
auth_pass_encrypted boolean not null default false);
create index ttrss_feeds_owner_uid_index on ttrss_feeds(owner_uid);
@@ -182,7 +183,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 (29);
insert into ttrss_version values (30);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,