I've tried...
$table->time('shift_end')->nullable();
$table->time('shift_end')->nullable()->default('NULL');
$table->time('shift_end')->nullable()->default(NULL);
$table->time('shift_end')->nullable()->default();
How do I simply get a default of null on a nullable column?
Never mind, I was looking at the wrong DDL on my tables. It looks like this does the trick:
$table->time('shift_end')->nullable();
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community