I've got a symfony 2.8 project with a postgressql database and the ID generation strategy is IDENTITY but every command I enter like
doctrine:schema:update
or
doctrine:migrations:migrate
return an error like this:
An exception occurred while executing 'SELECT min_value, increment_by FROM "abstract_group_id_seq"':
SQLSTATE[42703]: Undefined column: 7 ERROR: column "min_value" does not exist
LINE 1: SELECT min_value, increment_by FROM "abstract_group_id_seq"
Is it a schema name problem? Does anybody know how to setup doctrine properly? Thank you.