Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

sunrise's avatar

Laravel 5.2 : `php artisan migrate` 's error

I am using Laravel 5.2 ,there is an error when I run php artisan migrate,as follows:

2016_06_12_134655_create_categories_table.php enter image description here

2016_06_12_134659_create_goods_table.php enter image description here

$php artisan migrate enter image description here

what should I do?

0 likes
2 replies
SmoDav's avatar

Hi, You have set the category_id field in the goods table as a tinyInteger instead of an integer. The migration for the categories table has the primary key as an integer.

1 like

Please or to participate in this conversation.