0 votes

I did an import of the ORM schema but when not defined the importer assumes that a value is default null changing the definition of each column from:

  • @ORM\Column(name="key_string", type="string", length=32)

to:

  • @ORM\Column(type="string", length=32, nullable=true, name="key_string")
in Solved by (120 points)
recategorized by

1 Answer

0 votes

Nullable=true is default value. So it doesn't matter if "nullabe=true" is exported or not, the result is the same.

by Skipper developer (141k points)