ID tipe Laravel

$table->foreignId('user_id') // UNSIGNED BIG INT
                ->references('id')
                ->on('users'); 
NachooCh