Skip to content

Commit a2df494

Browse files
committed
Add enum class comment to created enums
1 parent fc9f036 commit a2df494

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/DBAL/Platform/PostgreSQLPlatform.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public function quoteEnumLabel(mixed $label): int|string
8484
}
8585
}
8686

87-
protected function initializeDoctrineTypeMappings()
87+
protected function initializeDoctrineTypeMappings(): void
8888
{
8989
parent::initializeDoctrineTypeMappings();
9090

src/DBAL/Schema/SchemaDiff.php

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ public function toSql(AbstractPlatform $platform): array
6767

6868
foreach ($this->getCreatedTypes() as $type) {
6969
$sql[] = $platform->getCreateTypeSql($type);
70+
$sql[] = $platform->getCommentOnTypeSql($type);
7071
}
7172

7273
foreach ($this->getAlteredTypes() as $alterTypeArray) {

0 commit comments

Comments
 (0)