To fix this, you have to set a type for an id column:
#[ORM\Id]
#[ORM\GeneratedValue(strategy: "AUTO")]
#[ORM\Column(type: 'integer')]
protected $id = null;
Create new migration, execute and after execution you should notice a new sequence in postgresql database sequences.
Cheers.