summaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-04-09 19:14:28 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2016-04-09 19:14:28 +0200
commitae11018b37ef9506aa27660315b55a0898491f59 (patch)
treebf622d4b10a99c332a989ad09d07e24c8ca74f65 /db
parentd4b965433085eb43911cd7d896ea3fec0ec45850 (diff)
drop last_modified column
Diffstat (limited to 'db')
-rw-r--r--db/feed.php8
1 files changed, 2 insertions, 6 deletions
diff --git a/db/feed.php b/db/feed.php
index b339c2837..1258c2d13 100644
--- a/db/feed.php
+++ b/db/feed.php
@@ -79,7 +79,6 @@ class Feed extends Entity implements IAPI, \JsonSerializable {
protected $preventUpdate;
protected $deletedAt;
protected $articlesPerUpdate;
- protected $lastModified;
protected $httpLastModified;
protected $httpEtag;
protected $location;
@@ -105,7 +104,6 @@ class Feed extends Entity implements IAPI, \JsonSerializable {
$this->addType('fullTextEnabled', 'boolean');
$this->addType('updateMode', 'integer');
$this->addType('updateErrorCount', 'integer');
- $this->addType('lastModified', 'integer');
}
@@ -135,8 +133,7 @@ class Feed extends Entity implements IAPI, \JsonSerializable {
'updateErrorCount',
'lastUpdateError',
'basicAuthUser',
- 'basicAuthPassword',
- 'lastModified'
+ 'basicAuthPassword'
]);
$url = parse_url($this->link)['host'];
@@ -163,8 +160,7 @@ class Feed extends Entity implements IAPI, \JsonSerializable {
'unreadCount',
'ordering',
'link',
- 'pinned',
- 'lastModified'
+ 'pinned'
]);
}