]> git.andy128k.dev Git - ipf.git/commitdiff
make generated sql more human readable.
authorAndrey Kutejko <andy128k@gmail.com>
Thu, 20 Oct 2011 11:26:00 +0000 (13:26 +0200)
committerAndrey Kutejko <andy128k@gmail.com>
Thu, 20 Oct 2011 11:26:00 +0000 (13:26 +0200)
ipf/orm.php

index 90afb2f0afab384f6322ddfc597012b8ed9cc27a..442e9749731fe774b8a03d97572b4ee925f89789 100644 (file)
@@ -220,7 +220,7 @@ final class IPF_ORM {
         $sql = IPF_ORM_Manager::connection()->export->exportSql($directory);
         $build = '';
         foreach ($sql as $query) {
-            $build .= $query.";\n";
+            $build .= $query.";\n\n";
         }
         return $build;
     }