We are using the doctrine postgis extension with Symfony 3.3. If we are running bin/console doctrine:schema:update --dump-sql|--force there is always one query that requires execution:
This happens as soon you define the srid option. I guess this happens because the schema compare tool reads the option value from database as integer and the srid from the XML definition as string.
We are using the doctrine postgis extension with Symfony 3.3. If we are running
bin/console doctrine:schema:update --dump-sql|--force
there is always one query that requires execution:The schema definition for this field is:
This happens as soon you define the srid option. I guess this happens because the schema compare tool reads the option value from database as integer and the srid from the XML definition as string.