We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
After adding a decimal column (10,2) to the schema
<column name="my_new_column" type="DECIMAL" size="10" scale="2" required="false" />
the decimals are missing in the generated migration.
ALTER TABLE `my_table` ADD ( `my_new_column` DECIMAL );