1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-30 10:51:29 +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

@@ -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,