We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc9f036 commit a2df494Copy full SHA for a2df494
src/DBAL/Platform/PostgreSQLPlatform.php
@@ -84,7 +84,7 @@ public function quoteEnumLabel(mixed $label): int|string
84
}
85
86
87
- protected function initializeDoctrineTypeMappings()
+ protected function initializeDoctrineTypeMappings(): void
88
{
89
parent::initializeDoctrineTypeMappings();
90
src/DBAL/Schema/SchemaDiff.php
@@ -67,6 +67,7 @@ public function toSql(AbstractPlatform $platform): array
67
68
foreach ($this->getCreatedTypes() as $type) {
69
$sql[] = $platform->getCreateTypeSql($type);
70
+ $sql[] = $platform->getCommentOnTypeSql($type);
71
72
73
foreach ($this->getAlteredTypes() as $alterTypeArray) {
0 commit comments