I use Doctrine 2.6.3 with Symfony 4.3.1 and Postgres 10
Unfortunately when I specify a simple_array or array column type, the Doctrine just simple create that column as TEXT, but why? Postgres supports int arrays too.
@ORM\Column(type="simple_array", nullable=true)
I want to store some enum values here: [1, 2, 3, 4] and thats all, integers.
How can I force Doctrine to creaet int_array type for the column instead of text?