What are the consequences, problems if Enity does not match the database schema. For example, I have an entity class SKU and its description. It defines the property $amountOfPackaging .
/** * Количество в упаковке * @var string * * @ORM\Column(type="decimal", precision = 10, scale = 3) * @Assert\NotBlank() */ 1. What could be the consequences / problems if I change the digit capacity of this field at the database level for example 10.4?
2. What can the declared connections at the database level lead to and are not described in the Enity classes.