Skip to content

Commit

Permalink
Replace deprecated dbal types from NodeImportService
Browse files Browse the repository at this point in the history
  • Loading branch information
bwaidelich committed Jul 4, 2024
1 parent d919d46 commit c025b85
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

use Doctrine\DBAL\Connection;
use Doctrine\DBAL\Types\Type;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\EntityManagerInterface;
use Neos\Flow\Annotations as Flow;
use Neos\Flow\Persistence\Aspect\PersistenceMagicInterface;
Expand Down Expand Up @@ -119,19 +120,19 @@ class NodeImportService
'dimensionValues' => [],
'properties' => [],
'hiddenBeforeDateTime' => [
'columnType' => Type::DATETIME
'columnType' => Types::DATE_IMMUTABLE
],
'hiddenAfterDateTime' => [
'columnType' => Type::DATETIME
'columnType' => Types::DATE_IMMUTABLE
],
'creationDateTime' => [
'columnType' => Type::DATETIME
'columnType' => Types::DATE_IMMUTABLE
],
'lastModificationDateTime' => [
'columnType' => Type::DATETIME
'columnType' => Types::DATE_IMMUTABLE
],
'lastPublicationDateTime' => [
'columnType' => Type::DATETIME
'columnType' => Types::DATE_IMMUTABLE
],
'accessRoles' => []
];
Expand Down

0 comments on commit c025b85

Please sign in to comment.