Created
May 30, 2016 09:23
-
-
Save o-shabashov/af0f4302c6bd0d4d3bcf1c84e2240833 to your computer and use it in GitHub Desktop.
Yii2 today scope in ModelQuery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace app\models; | |
/** | |
* This is the ActiveQuery class for [[User]]. | |
* @see User | |
*/ | |
class UserQuery extends \yii\db\ActiveQuery | |
{ | |
/** | |
* @return $this ActiveQuery | |
*/ | |
public function today() | |
{ | |
return $this->andWhere('date(starts_at) = date(utc_timestamp)'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment