cards soft delete wip
Signed-off-by: Manuel Arno Korfmann <manu@korfmann.info> cards: softdelete done; undo delete wip Signed-off-by: Manuel Arno Korfmann <manu@korfmann.info> show deleted cards in board settings sidebar wip Signed-off-by: Manuel Arno Korfmann <manu@korfmann.info> CardMapper#findDeleted: fix bug in entity property assigning Signed-off-by: Manuel Arno Korfmann <manu@korfmann.info>
This commit is contained in:
committed by
Julius Härtl
parent
3e4dedf397
commit
2ef4b55af4
@@ -42,6 +42,7 @@ class Card extends RelationalEntity {
|
||||
protected $archived = false;
|
||||
protected $duedate;
|
||||
protected $notified = false;
|
||||
protected $deletedAt;
|
||||
|
||||
private $databaseType = 'sqlite';
|
||||
|
||||
@@ -58,6 +59,7 @@ class Card extends RelationalEntity {
|
||||
$this->addType('createdAt', 'integer');
|
||||
$this->addType('archived', 'boolean');
|
||||
$this->addType('notified', 'boolean');
|
||||
$this->addType('deletedAt', 'integer');
|
||||
$this->addRelation('labels');
|
||||
$this->addRelation('assignedUsers');
|
||||
$this->addRelation('attachments');
|
||||
|
||||
Reference in New Issue
Block a user