summaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-09-13 17:59:16 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-09-13 17:59:16 +0200
commitdda579ccaac67b5f360af98926a1697389bdbc6c (patch)
tree63e9dc2af7218515323dee9e56d381decd811eef /db
parent7f3a42d9493c0c9e23ad6084a77bcd164b588ad2 (diff)
also store feeds per article when doing updates
Diffstat (limited to 'db')
-rw-r--r--db/feed.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/db/feed.php b/db/feed.php
index e84e4489d..5e5bfcf5d 100644
--- a/db/feed.php
+++ b/db/feed.php
@@ -41,6 +41,7 @@ class Feed extends Entity implements IAPI {
public $link;
public $preventUpdate;
public $deletedAt;
+ public $articlesPerUpdate;
public function __construct(){
$this->addType('parentId', 'int');
@@ -49,6 +50,7 @@ class Feed extends Entity implements IAPI {
$this->addType('unreadCount', 'int');
$this->addType('preventUpdate', 'bool');
$this->addType('deletedAt', 'int');
+ $this->addType('articlesPerUpdate', 'int');
}