From 8f71c418f273788e3b291be759eab0aba4fe4d5b Mon Sep 17 00:00:00 2001 From: TheJoeSchr <8218910+TheJoeSchr@users.noreply.github.com> Date: Sun, 25 May 2025 16:22:27 +0200 Subject: [PATCH] Fix typo in `Blueprint` `datetime` `dateTime` It still works, because of php case sensitive rules, but it's better correct --- Schema/Blueprint.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Schema/Blueprint.php b/Schema/Blueprint.php index b7687e839..f6801eb75 100755 --- a/Schema/Blueprint.php +++ b/Schema/Blueprint.php @@ -1320,7 +1320,7 @@ public function softDeletesTz($column = 'deleted_at', $precision = null) */ public function softDeletesDatetime($column = 'deleted_at', $precision = null) { - return $this->datetime($column, $precision)->nullable(); + return $this->dateTime($column, $precision)->nullable(); } /**