Alex NCode

Results 3 comments of Alex NCode

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; ```

> 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]) ```