Code Duplication    Length = 3-3 lines in 2 locations

src/database/Postgres.php 2 locations

@@ 2508-2510 (lines=3) @@
2505
                $sql .= " DEFAULT {$default[$i]}";
2506
            }
2507
2508
            if ($colcomment[$i] != '') {
2509
                $comment_sql .= "COMMENT ON COLUMN \"{$name}\".\"{$field[$i]}\" IS '{$colcomment[$i]}';\n";
2510
            }
2511
2512
            $found = true;
2513
        }
@@ 6052-6054 (lines=3) @@
6049
                $sql .= '[]';
6050
            }
6051
6052
            if ($colcomment[$i] != '') {
6053
                $comment_sql .= "COMMENT ON COLUMN \"{$f_schema}\".\"{$name}\".\"{$field[$i]}\" IS '{$colcomment[$i]}';\n";
6054
            }
6055
6056
            $found = true;
6057
        }