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
The latest change in #3668 by @staudenmeir seem to have broken my migrations in MySQL that don't update text columns.
ALTER TABLE user_details CHANGE vat_amount vat_amount NUMERIC(8, 2) DEFAULT '0' NOT NULL, CHANGE vat_included vat_included TINYINT (1) DEFAULT '0' NOT NULL
ALTER TABLE user_details CHANGE vat_amount vat_amount NUMERIC(8, 2) DEFAULT '0' NOT NULL, CHANGE vat_included vat_included TINYINT (1) CHARACTER SET utf8mb4 DEFAULT '0' NOT NULL COLLATE `utf8mb4_unicode_ci`
In a Laravel 6 project:
Schema::table('user_details', static function (Blueprint $table) { $table->decimal('vat_amount', 8, 2)->default(0)->change(); $table->boolean('vat_included')->nullable(false)->default(false)->change(); });
The text was updated successfully, but these errors were encountered:
duplicate of #3714
Sorry, something went wrong.
Dang, I had this open half an hour ago, went to lunch and submitted when I came back haha.
Haha submitted before lunch :p
s'alright - closing here meanwhile.
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Ocramius
No branches or pull requests
BC Break Report
Summary
The latest change in #3668 by @staudenmeir seem to have broken my migrations in MySQL that don't update text columns.
Previous behaviour
Current behavior
How to reproduce
In a Laravel 6 project:
The text was updated successfully, but these errors were encountered: