You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Result: $this->addSql('CREATE TABLE projects (id INT NOT NULL, ...')
And if I add AUTO_INCREMENT manually, next migration will change it again
The text was updated successfully, but these errors were encountered:
Adi-18
changed the title
make:migration dont create AUTO_INCREMENT on some object
make:migration dont create AUTO_INCREMENT on some entity
Feb 2, 2023
Adi-18
changed the title
make:migration dont create AUTO_INCREMENT on some entity
'make:migration' dont create 'AUTO_INCREMENT' on some entity
Feb 2, 2023
Adi-18
changed the title
'make:migration' dont create 'AUTO_INCREMENT' on some entity
make:migration dont create AUTO_INCREMENT on some entity
Feb 2, 2023
doctrine/doctrine-migrations-bundle: 3.2.2
I have several entities. But in one, migration dont add AUTO_INCREMENT
One working Entity :
Result:
$this->addSql('CREATE TABLE mandant (id INT AUTO_INCREMENT NOT NULL, ...')
other, not working, Entity:
Result:
$this->addSql('CREATE TABLE projects (id INT NOT NULL, ...')
And if I add AUTO_INCREMENT manually, next migration will change it again
The text was updated successfully, but these errors were encountered: