diff --git a/Neos.ContentRepository/Classes/Domain/Service/ImportExport/NodeImportService.php b/Neos.ContentRepository/Classes/Domain/Service/ImportExport/NodeImportService.php index 3276a0382ea..45e4ecc39fc 100644 --- a/Neos.ContentRepository/Classes/Domain/Service/ImportExport/NodeImportService.php +++ b/Neos.ContentRepository/Classes/Domain/Service/ImportExport/NodeImportService.php @@ -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; @@ -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' => [] ];