From 24f56cb80fc42505acfddc373f9b71f8821068fc Mon Sep 17 00:00:00 2001 From: Venkata Chandra Sekhar Nainala Date: Mon, 30 Sep 2024 12:44:09 +0200 Subject: [PATCH] chore: pint updates --- .../2024_09_09_150749_add_columns_on_reports_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2024_09_09_150749_add_columns_on_reports_table.php b/database/migrations/2024_09_09_150749_add_columns_on_reports_table.php index 8ea2e3b4..db442525 100644 --- a/database/migrations/2024_09_09_150749_add_columns_on_reports_table.php +++ b/database/migrations/2024_09_09_150749_add_columns_on_reports_table.php @@ -24,7 +24,7 @@ public function up(): void public function down(): void { Schema::table('reports', function (Blueprint $table) { - $table->dropColumn([ 'query']); + $table->dropColumn(['query']); $table->renameColumn('doi', 'url'); }); }