From df80055e93a937d0ee182a465a56d895a83b5303 Mon Sep 17 00:00:00 2001 From: Chris Gmyr Date: Thu, 30 Mar 2017 11:49:46 -0400 Subject: [PATCH] add soft deletes to test migration --- tests/TestCase.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/TestCase.php b/tests/TestCase.php index fd5c356..4a56888 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -138,6 +138,7 @@ function ($table) { $table->integer('user_id')->unsigned(); $table->text('body'); $table->timestamps(); + $table->softDeletes(); } ); }