You most likely forgot to set the role_id foreign key type as BIGINT (20). This is not a Laravel problem, but MySQL.
By the way, Laravel has a built-in function:
$this->bigIncrements('id');
This will help make unsigned , auto-increment and primary key .
source share