From 953f98a389e0237fd8098ae9bddbd3150f045bcf Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Mon, 21 Nov 2022 19:07:47 +0000 Subject: [PATCH] Remove a migration that alters the failed jobs table --- ..._exception_column_to_failed_jobs_table.php | 31 ------------------- 1 file changed, 31 deletions(-) delete mode 100644 database/migrations/2016_09_06_152900_add_exception_column_to_failed_jobs_table.php 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'); - }); - } -}