From cfd610e44adc38eed7e03c316a3081e864fa1f93 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Wed, 11 Dec 2019 05:11:27 +0100 Subject: [PATCH] Fix title length to 32 Add short field --- Resources/config/doctrine/Location.orm.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Resources/config/doctrine/Location.orm.yml b/Resources/config/doctrine/Location.orm.yml index 86d86db..0b276fa 100644 --- a/Resources/config/doctrine/Location.orm.yml +++ b/Resources/config/doctrine/Location.orm.yml @@ -12,7 +12,10 @@ Rapsys\AirBundle\Entity\Location: fields: title: type: string - length: 24 + length: 32 + short: + type: string + length: 16 address: type: string length: 32 -- 2.41.0