summaryrefslogtreecommitdiffstats
path: root/db/feed.php
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-05-10 13:30:00 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-05-10 13:30:00 +0200
commit347000cc2d5597c1971942ebdbe97461c9fa5802 (patch)
tree8a2f6dc166ad871c646b4cf8bf13f4a9fcd02e55 /db/feed.php
parentc487bfe23312a5b266d8eb21a3825ab791a1c3e8 (diff)
use a deleted flag for deleted feeds to handle undo
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');
}