remove isDeleted flag

This commit is contained in:
Nicolas Lœuillet
2015-02-20 15:36:25 +01:00
parent aa4d6562c1
commit 1d14779154
6 changed files with 23 additions and 62 deletions

View File

@ -57,13 +57,6 @@ class Entry
*/
private $isStarred = false;
/**
* @var boolean
*
* @ORM\Column(name="is_deleted", type="boolean")
*/
private $isDeleted = false;
/**
* @var string
*
@ -280,22 +273,6 @@ class Entry
return $this->user;
}
/**
* @return string
*/
public function isDeleted()
{
return $this->isDeleted;
}
/**
* @param string $isDeleted
*/
public function setDeleted($isDeleted)
{
$this->isDeleted = $isDeleted;
}
/**
* @return string
*/