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
Laravel Version: 8.48.1 PHP Version: 8.0.1
Migrations that mix integer() (or bigInteger()) with unsigned() no longer migrate, but throw an error with Postgres error.
integer()
bigInteger()
unsigned()
Schema::create('broken_primary', function (Blueprint $table) { $table->integer('broken_id')->unsigned()->primary(); $table->timestamps(); });
The text was updated successfully, but these errors were encountered:
This was fixed with laravel/framework#37826, so no need for this anymore.
Sorry, something went wrong.
No branches or pull requests
Laravel Version: 8.48.1
PHP Version: 8.0.1
Migrations that mix
integer()
(orbigInteger()
) withunsigned()
no longer migrate, but throw an error with Postgres error.The text was updated successfully, but these errors were encountered: