Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/Database/Schema/Blueprint.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ public function timestamps($precision = 0): void
* Add creation and update timestampTz columns to the table.
*
* @param int|null $precision
*
* @return void
*/
public function timestampsTz($precision = 0): void
Expand Down Expand Up @@ -95,6 +96,7 @@ public function softDeletes($column = 'deleted_at', $precision = 0): ColumnDefin
*
* @param string $column
* @param int|null $precision
*
* @return \Illuminate\Database\Schema\ColumnDefinition
*/
public function softDeletesTz($column = 'deleted_at', $precision = 0): ColumnDefinition
Expand Down