Skip to content

Commit

Permalink
Add MariaDb1060Platform (#49848)
Browse files Browse the repository at this point in the history
  • Loading branch information
driesvints authored Jan 26, 2024
1 parent d293d99 commit 3bbb50e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Illuminate/Database/DBAL/TimestampType.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Platforms\MariaDb1027Platform;
use Doctrine\DBAL\Platforms\MariaDb1052Platform;
use Doctrine\DBAL\Platforms\MariaDb1060Platform;
use Doctrine\DBAL\Platforms\MariaDBPlatform;
use Doctrine\DBAL\Platforms\MySQL57Platform;
use Doctrine\DBAL\Platforms\MySQL80Platform;
Expand Down Expand Up @@ -34,7 +35,8 @@ public function getSQLDeclaration(array $column, AbstractPlatform $platform): st
MySQL80Platform::class,
MariaDBPlatform::class,
MariaDb1027Platform::class,
MariaDb1052Platform::class, => $this->getMySqlPlatformSQLDeclaration($column),
MariaDb1052Platform::class,
MariaDb1060Platform::class => $this->getMySqlPlatformSQLDeclaration($column),
PostgreSQLPlatform::class,
PostgreSQL94Platform::class,
PostgreSQL100Platform::class => $this->getPostgresPlatformSQLDeclaration($column),
Expand Down

0 comments on commit 3bbb50e

Please sign in to comment.