How can I create a decimal type in Phinx Migration, see how it is currently:
$oss->addColumn('valor','decimal', ['limit' => 10.2]);
I have tried in many ways and I can not, it always generates only 10.0.
How can I create a decimal type in Phinx Migration, see how it is currently:
$oss->addColumn('valor','decimal', ['limit' => 10.2]);
I have tried in many ways and I can not, it always generates only 10.0.