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(); } ); }