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(); } /**