Chapter 4 - Migrations.
Closed this issue · 1 comments
imzeeshan commented
$table->boolean('amenity_wifi')->default(false);
Does not work with Laravel 5.7,
Replaced that with
$table->boolean('amenity_wifi')->default(0);
and it worked fine.
anthonygore commented
Thanks