Categories: Mobile App

Be Careful: Laravel 5.8 Added bigIncrements As Defaults – Laravel Daily

There is one change in Laravel 5.8 that is not mentioned in the official Upgrade Guide but caused me problems – I couldn’t create a foreign key migration, and spent half-hour until found out the reasons. So I want to share, maybe you will encounter the same thing.

My Situation Example and Error

While working on one project, I’ve created a simple table transaction_types:

And added just one new string() field:

And then tried to create a migration for transactions table with a foreign key, with same syntax I used to do all the time:

Migration file content:

And here’s what happened when running php artisan migrate:

As usual, the error “cannot add foreign key constraint” doesn’t give much details so I was just guessing, what could go wrong:

Look closer at what Laravel is generating when doing php artisan make:migration command:

bigIncrements. BIG increments. And then, of course, if you’re doing a foreign key from just “unsigned integer” type (as I always did my whole life), it fails. Type mismatch. Obviously.

How to Fix

Well, it’s easy. There are two ways to make it work:

The choice is yours.

Why Am I so Angry About It

Simple – this change wasn’t mentioned anywhere in 5.8 changes.

So, it makes me think that probably it’s only me with this problem, and everyone else will actually notice that migrations are being generated with bigIncrements().

After some googling, I’ve found one Reddit thread and one Stackoverflow post about it. That’s it.

Oh, and, of course, it was mentioned and discussed in the official Github repository of Laravel, back in November 2018:

Don’t get me wrong, I’m not against that change to bigIncrements(). I’m just angry about how it was (NOT) communicated. Probably only a bunch of people participating in internal Github communications actually knew about this change.

P.S. Oh, by the way, default users table migration also comes with bigIncrements():

So whenever you create new fields with foreign key to users, don’t forget to use bigInteger().

Like our articles?
Check out our Laravel online courses!

This content was originally published here.

vinova

Recent Posts

Guide to Using AI in Recruitment Effectively in 2024

The recruitment picture is changing rapidly, and AI in recruitment is at the forefront of…

24 hours ago

What is Multimodal AI? 10 Creative Applications and Real-World Examples

Multimodal AI is a groundbreaking technology that combines multiple modalities, such as text, images, and…

2 days ago

Top 10 AI Applications in the Energy Sector for 2024

Artificial intelligence (AI in the energy) sector is revolutionizing how we produce, distribute, and consume…

3 days ago

Top Mobile App Monetization Strategies for 2024

Nowadays, monetization application is the end game of mobile app development. Whether you're an indie…

4 days ago

Top Reasons Why Mobile Apps Fail and Lessons for Success

Nowadays, many mobile apps fail to make an impact. From poor research to bad user…

5 days ago

Comprehensive Guide to VisionOS App Development 2024 for Beginners

Apple's VisionOS, the operating system powering the Vision Pro headset, is paving the way for…

6 days ago