I have the following Column definition in my Symfony project
#[ORM\Entity]
class Queue {
[...]
#[ORM\Column(
insertable: false,
updatable: false,
columnDefinition: 'SERIAL',
)]
private ?int $autoIncrement = null;
[...]
}
When generating a migration without --formatted option the column name is auto_increment. But with --formatted the column name will be AUTO_INCREMENT.
The resulting column name should be lowercase.
Edit: The doctrine/sql-formatter version is 1.2.0
Could be related to #93