Final Class Yiisoft\Db\Mssql\Column\DateTimeColumn
| Inheritance | Yiisoft\Db\Mssql\Column\DateTimeColumn » Yiisoft\Db\Schema\Column\DateTimeColumn |
|---|
Protected Methods
| Method | Description | Defined By |
|---|---|---|
| getMillisecondsFormat() | Yiisoft\Db\Mssql\Column\DateTimeColumn |
Method Details
| protected string getMillisecondsFormat ( ) |
protected function getMillisecondsFormat(): string
{
return match ($this->getDbType()) {
'smalldatetime' => '',
'datetime' => '.v',
default => parent::getMillisecondsFormat(),
};
}
Signup or Login in order to comment.