From d6499207a3ce78cbcf9f879d9464a140c47dc559 Mon Sep 17 00:00:00 2001 From: Sohel Ahmed Mesaniya Date: Thu, 28 Nov 2024 20:41:17 +0530 Subject: [PATCH] Remove redundant code --- src/lib/ColumnToCode.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib/ColumnToCode.php b/src/lib/ColumnToCode.php index f4da8079..b407aaaf 100644 --- a/src/lib/ColumnToCode.php +++ b/src/lib/ColumnToCode.php @@ -407,8 +407,6 @@ private function getIsBuiltinType($type, $dbType) private function resolveEnumType():void { if (ApiGenerator::isPostgres()) { - // $rawTableName = $this->dbSchema->getRawTableName($this->tableAlias); - // $this->rawParts['type'] = '"enum_'.$rawTableName.'_' . $this->column->name.'"'; $this->rawParts['type'] = '"'.$this->column->dbType.'"'; return; }