class ChangeNullableFooColnumBarTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('bar', function (Blueprint $table) {
$table->text('hoo')->nullable()->change();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('bar', function (Blueprint $table) {
$table->text('hoo')->nullable(false)->change();
});
}
}
nullable(false)->change()
というミニTipsでした。
謝謝