From bbd1d6059a9e9a46410ad9c51fe58ebb209611e8 Mon Sep 17 00:00:00 2001 From: Till Deeke Date: Mon, 10 Sep 2018 17:16:07 +0200 Subject: [PATCH] Fixes errors in tests --- .../2018_07_28_023826_create_checkout_acceptances_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2018_07_28_023826_create_checkout_acceptances_table.php b/database/migrations/2018_07_28_023826_create_checkout_acceptances_table.php index 6d1f1f2b3..67bc3b800 100644 --- a/database/migrations/2018_07_28_023826_create_checkout_acceptances_table.php +++ b/database/migrations/2018_07_28_023826_create_checkout_acceptances_table.php @@ -19,7 +19,7 @@ class CreateCheckoutAcceptancesTable extends Migration $table->morphs('checkoutable'); $table->integer('assigned_to_id')->unsigned(); - $table->string('signature_filename'); + $table->string('signature_filename')->nullable(); $table->timestamp('accepted_at')->nullable(); $table->timestamp('declined_at')->nullable();