From 93d4d3df1d39ca55c9a4ce4bc47bfe79aa45b88f Mon Sep 17 00:00:00 2001 From: James Cole Date: Thu, 20 Nov 2014 07:41:30 +0100 Subject: [PATCH] Wrong column names. --- .../migrations/2014_11_17_194734_event_table_additions_1.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/database/migrations/2014_11_17_194734_event_table_additions_1.php b/app/database/migrations/2014_11_17_194734_event_table_additions_1.php index 1e0097d757..a164da50ad 100644 --- a/app/database/migrations/2014_11_17_194734_event_table_additions_1.php +++ b/app/database/migrations/2014_11_17_194734_event_table_additions_1.php @@ -26,8 +26,8 @@ class EventTableAdditions1 extends Migration // remove some fields: Schema::table( 'reminders', function (Blueprint $table) { - $table->integer('remembersable_id')->unsigned()->nullable(); - $table->string('remembersable_type')->nullable(); + $table->integer('remindersable_id')->unsigned()->nullable(); + $table->string('remindersable_type')->nullable(); } ); }