Fix annotation syntax error on customer vehicle #799
This commit is contained in:
parent
7f1b35ad29
commit
0ea93622be
1 changed files with 6 additions and 2 deletions
|
|
@ -13,8 +13,12 @@ use Doctrine\Common\Collections\Criteria;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @ORM\Entity
|
* @ORM\Entity
|
||||||
* @ORM\Table(name="customer_vehicle", indexes={@ORM\Index(columns={"plate_number"}, flags={"fulltext"})
|
* @ORM\Table(
|
||||||
* @ORM\Index(name="plate_number_idx", columns={"plate_number"})})
|
* name="customer_vehicle",
|
||||||
|
* indexes={
|
||||||
|
* @ORM\Index(name="plate_number_idx", columns={"plate_number"}, flags={"fulltext"})
|
||||||
|
* }
|
||||||
|
* )
|
||||||
*/
|
*/
|
||||||
class CustomerVehicle
|
class CustomerVehicle
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue