fix column name

This commit is contained in:
2021-12-13 14:38:33 +01:00
parent de262bbc28
commit cc849e279d
2 changed files with 4 additions and 4 deletions

View File

@@ -48,9 +48,9 @@ class Civility
private array $name = [];
/**
* @ORM\Column(type="float", nullable=true, options={"default": 0.0})
* @ORM\Column(type="float", name="ordering", nullable=true, options={"default": 0.0})
*/
private float $order = 0.0;
private float $order = 0;
public function getAbbreviation(): array
{