From 9f367d35fbc40b3511ca6805af7f644ca6ad9197 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Fri, 8 Nov 2024 15:58:38 +0000 Subject: [PATCH] Apply fixes from StyleCI --- ...2024_11_02_000000_add_cancelled_at_to_gdpr_erasure_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migrations/2024_11_02_000000_add_cancelled_at_to_gdpr_erasure_table.php b/migrations/2024_11_02_000000_add_cancelled_at_to_gdpr_erasure_table.php index 97a7d42..670f235 100644 --- a/migrations/2024_11_02_000000_add_cancelled_at_to_gdpr_erasure_table.php +++ b/migrations/2024_11_02_000000_add_cancelled_at_to_gdpr_erasure_table.php @@ -12,7 +12,7 @@ return [ 'up' => function (Builder $schema) { - if (! $schema->hasColumn('gdpr_erasure', 'cancelled_at')) { + if (!$schema->hasColumn('gdpr_erasure', 'cancelled_at')) { $schema->table('gdpr_erasure', function (Blueprint $table) { $table->dateTime('cancelled_at')->nullable(); });