1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-16 08:35:57 +00:00

add ttrss_entries.date_updated; use date_updated instead of date_enered for expiry checking (bump schema)

This commit is contained in:
Andrew Dolgov
2010-10-27 12:05:20 +04:00
parent 70543b6a40
commit 25ea280502
9 changed files with 48 additions and 30 deletions

View File

@@ -134,6 +134,7 @@ create table ttrss_entries (id integer not null primary key auto_increment,
content_hash varchar(250) not null,
no_orig_date bool not null default 0,
date_entered datetime not null,
date_updated datetime not null,
num_comments integer not null default 0,
comments varchar(250) not null default '',
author varchar(250) not null default '') TYPE=InnoDB;
@@ -240,7 +241,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 (66);
insert into ttrss_version values (67);
create table ttrss_enclosures (id integer primary key auto_increment,
content_url text not null,