laracraft-tech / laravel-xhprof

Easy XHProf setup to profile your Laravel application!
MIT License
219 stars 11 forks source link

Fix too short field length issue #2

Closed a-bashtannik closed 1 year ago

a-bashtannik commented 1 year ago

In some cases, the collected data is more than 65 KB, which is the default for MySQL BLOB data. There is no other built-in way to define LONGBLOB in Laravel 9, so I just use raw statements.

This PR fixes the error for new migrations.