Commit 61d68d03 authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

Ajout de SET SQLBLANKLINES ON; au début du script de création de schéma.

parent 4e582035
Loading
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -92,6 +92,11 @@ class SchemaService

        $sql = implode('', $result);
        $sql = str_replace("\"$srcSchemaName\"", "\"$dstSchemaName\"", $sql);

        $sql = 'SET SQLBLANKLINES ON;' . PHP_EOL .
            PHP_EOL .
            $sql;

        file_put_contents($outputFilePath, $sql);
    }