summaryrefslogtreecommitdiffstats
path: root/db/feed.php
diff options
context:
space:
mode:
Diffstat (limited to 'db/feed.php')
-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');
}