We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 329094b commit a12ece8Copy full SHA for a12ece8
src/Propel/Generator/Platform/PgsqlPlatform.php
@@ -70,21 +70,6 @@ protected function initializeTypeMap(): void
70
$this->setSetTypesMapping(true);
71
}
72
73
- /**
74
- * PostgreSQL uses named enum types created via CREATE TYPE, not inline ENUM() syntax.
75
- * Returns VARCHAR as the SQL type since PDO handles PG enum values as strings.
76
- * Use the `sqlType` schema attribute to specify the actual PG enum type name if needed.
77
- *
78
- * @param \Propel\Generator\Model\Column $column
79
80
- * @return string
81
- */
82
- #[\Override]
83
- public function buildNativeEnumeratedColumnSqlType(Column $column): string
84
- {
85
- return 'VARCHAR';
86
- }
87
-
88
/**
89
* @return string
90
*/
0 commit comments