diff --git a/Schema/Blueprint.php b/Schema/Blueprint.php index 3248fd307..bb409909a 100755 --- a/Schema/Blueprint.php +++ b/Schema/Blueprint.php @@ -1265,6 +1265,20 @@ public function nullableTimestamps($precision = null) return $this->timestamps($precision); } + + /** + * Add nullable creation and update timestamps to the table. + * + * Alias for self::timestampsTz(). + * + * @param int|null $precision + * @return \Illuminate\Support\Collection + */ + public function nullableTimestampsTz($precision = null) + { + return $this->timestampsTz($precision); + } + /** * Add creation and update timestampTz columns to the table. *