Alex NCode
Alex NCode
Tagging @fabian-hiller for feedback
Migration generator not add precision and scale params for decimal column type in Embeddable class 🐛
if i add parameters with attributes we get same behavior ```php #[Column(type: 'decimal', nullable: false, default: 0, attributes: ['precision' => 3, 'scale' => 11])] private int $width = 0; ```
Migration generator not add precision and scale params for decimal column type in Embeddable class 🐛
> could you try `#[Column(type: 'decimal(3,11)')]`? This work ! Will be generated: ```php ->addColumn('property_width', 'decimal', ['nullable' => false, 'defaultValue' => 0, 'precision' => 3, 'scale' => 11]) ```