summaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-04-19 13:01:44 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-04-19 13:01:44 +0200
commit76cc72393a2be7a54a849225accce6bbd1918129 (patch)
treec5c1f3ec45aae96b1c30f4a0382d3b53168ce530 /db
parent67e00e798d85d897e4793077aa14bcb4fb3d1765 (diff)
added a way to prevent feed from being updated
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 824aed501..e2d3b87de 100644
--- a/db/feed.php
+++ b/db/feed.php
@@ -39,12 +39,14 @@ class Feed extends Entity {
public $folderId;
public $unreadCount;
public $link;
+ public $preventUpdate;
public function __construct(){
$this->addType('parentId', 'int');
$this->addType('added', 'int');
$this->addType('folderId', 'int');
$this->addType('unreadCount', 'int');
+ $this->addType('preventUpdate', 'bool');
}
} \ No newline at end of file