Skip to content

Commit

Permalink
Merge branch '6.x'
Browse files Browse the repository at this point in the history
# Conflicts:
#	src/Illuminate/Database/Concerns/ManagesTransactions.php
  • Loading branch information
driesvints committed Dec 9, 2019
2 parents 7efcf43 + a4cfbe9 commit 2634282
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Eloquent/Concerns/HasTimestamps.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,4 +126,24 @@ public function getUpdatedAtColumn()
{
return static::UPDATED_AT;
}

/**
* Get the fully qualified "created at" column.
*
* @return string
*/
public function getQualifiedCreatedAtColumn()
{
return $this->qualifyColumn($this->getCreatedAtColumn());
}

/**
* Get the fully qualified "updated at" column.
*
* @return string
*/
public function getQualifiedUpdatedAtColumn()
{
return $this->qualifyColumn($this->getUpdatedAtColumn());
}
}

0 comments on commit 2634282

Please sign in to comment.