Annotation:
/**
* @ORM\Column(type="float", scale="2")
*/
protected $curr_price;
I'm using it with Symfony 2.
And this field becomes a double in MySQL database instead of float with 2 point precision.
What am I doing wrong? I tried deleting the DB, reinserting etc...