Hello,
I'm facing a issue/problem. I have a working project with Symfony 4 (using doctrine2 annotations) with a relative massive amount of entities. I'm trying to import and export the entities after some changes. The problem is that by default doctrine sets "nullable=false"
as default if nullable
is not defined.
Doctrine 2.6 Documentation
Actually in my Entities I didn't set nullable
so the spected behavior is to Skipper detects all the fields as NOT NULL
. But this doesn't happen and also when I export all the entities again everything changes to nullable=true
.
Is this a issue? or there's a workaround for this instead of setting all fields to NOT NULL
manually?
Thanks.