Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions src/AppBundle/Entity/Card.php
Original file line number Diff line number Diff line change
Expand Up @@ -2204,4 +2204,33 @@ public function getRealSlot()
{
return $this->realSlot;
}
/**
* @var string|null
*/
private $realBackText;


/**
* Set realBackText.
*
* @param string|null $realBackText
*
* @return Card
*/
public function setRealBackText($realBackText = null)
{
$this->realBackText = $realBackText;

return $this;
}

/**
* Get realBackText.
*
* @return string|null
*/
public function getRealBackText()
{
return $this->realBackText;
}
}
5 changes: 4 additions & 1 deletion src/AppBundle/Resources/config/doctrine/Card.orm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ AppBundle\Entity\Card:
default: false
myriad:
type: boolean
column: myriad
column: myriad
nullable: true
encounterPosition:
type: smallint
Expand Down Expand Up @@ -275,6 +275,9 @@ AppBundle\Entity\Card:
nullable: true
gedmo:
- translatable
realBackText:
type: text
nullable: true
backFlavor:
type: text
nullable: true
Expand Down