Code Duplication    Length = 3-3 lines in 2 locations

src/database/Postgres.php 2 locations

@@ 2463-2465 (lines=3) @@
2460
                $sql .= " DEFAULT {$default[$i]}";
2461
            }
2462
2463
            if ($colcomment[$i] != '') {
2464
                $comment_sql .= "COMMENT ON COLUMN \"{$name}\".\"{$field[$i]}\" IS '{$colcomment[$i]}';\n";
2465
            }
2466
2467
            $found = true;
2468
        }
@@ 5918-5920 (lines=3) @@
5915
                $sql .= '[]';
5916
            }
5917
5918
            if ($colcomment[$i] != '') {
5919
                $comment_sql .= "COMMENT ON COLUMN \"{$f_schema}\".\"{$name}\".\"{$field[$i]}\" IS '{$colcomment[$i]}';\n";
5920
            }
5921
5922
            $found = true;
5923
        }