Various feeds changes
- Change sort order for feed items to natural order - Remove display of dates in itembox - Trim html tags from creators in FeedReader parser
This commit is contained in:
parent
5e706c31ad
commit
e206b0af5e
14 changed files with 118 additions and 192 deletions
|
@ -1,4 +1,4 @@
|
|||
-- 82
|
||||
-- 83
|
||||
|
||||
-- Copyright (c) 2009 Center for History and New Media
|
||||
-- George Mason University, Fairfax, Virginia, USA
|
||||
|
@ -203,6 +203,7 @@ CREATE TABLE feeds (
|
|||
lastUpdate TIMESTAMP,
|
||||
lastCheck TIMESTAMP,
|
||||
lastCheckError TEXT,
|
||||
lastGUID TEXT,
|
||||
cleanupAfter INT,
|
||||
refreshInterval INT,
|
||||
FOREIGN KEY (libraryID) REFERENCES libraries(libraryID) ON DELETE CASCADE
|
||||
|
@ -212,6 +213,7 @@ CREATE TABLE feedItems (
|
|||
itemID INTEGER PRIMARY KEY,
|
||||
guid TEXT NOT NULL UNIQUE,
|
||||
readTime TIMESTAMP,
|
||||
translatedTime TIMESTAMP,
|
||||
FOREIGN KEY (itemID) REFERENCES items(itemID) ON DELETE CASCADE
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue