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 88879f8c4..22fbc359b 100644
--- a/db/feed.php
+++ b/db/feed.php
@@ -40,6 +40,7 @@ class Feed extends Entity implements IAPI {
public $unreadCount;
public $link;
public $preventUpdate;
+ public $deletedAt;
public function __construct(){
$this->addType('parentId', 'int');
@@ -47,6 +48,7 @@ class Feed extends Entity implements IAPI {
$this->addType('folderId', 'int');
$this->addType('unreadCount', 'int');
$this->addType('preventUpdate', 'bool');
+ $this->addType('deletedAt', 'int');
}