Make assigned_to_id nullable

This commit is contained in:
snipe 2020-12-02 10:48:34 -08:00
parent 4ac15daee7
commit 269d3fe509

View file

@ -17,7 +17,7 @@ class CreateCheckoutAcceptancesTable extends Migration
$table->increments('id');
$table->morphs('checkoutable');
$table->integer('assigned_to_id')->unsigned();
$table->integer('assigned_to_id')->nullable();
$table->string('signature_filename')->nullable();