I have a UUID column type which is a foreign key to another table and I want to make it nullable.
$table->uuid('event_id')->nullable()->change();
The Laravel documentation includes a list of column types which can be 'changed', and this does not include uuid, so no real surprise there, https://laravel.com/docs/5.6/migrations#modifying-columns
The database is MySQL, and when it's created the event_id field is a char, so I tried the following:
$table->char('event_id',36)->nullable()->change();
Got the same result as above (and again, no real surprise).
My question is: can I make this modification using Laravel'd DB Schema, or do I need to resort to raw SQL?