diff --git a/database/migrations/2016_09_06_152900_add_exception_column_to_failed_jobs_table.php b/database/migrations/2016_09_06_152900_add_exception_column_to_failed_jobs_table.php deleted file mode 100644 index 0f0598cb..00000000 --- a/database/migrations/2016_09_06_152900_add_exception_column_to_failed_jobs_table.php +++ /dev/null @@ -1,31 +0,0 @@ -text('exception'); - }); - } - - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - Schema::table('failed_jobs', function (Blueprint $table) { - $table->dropColumn('exception'); - }); - } -}