We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 );
The text was updated successfully, but these errors were encountered:
Yeah, because they are the default value.
Sorry, something went wrong.
Obviously, the scale value is not always the default, although 10 for the size is correct.
scale
10
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: