Make migration logging more verbose

This commit is contained in:
jekkos-t520
2020-04-04 17:03:21 +02:00
parent 5720f2b893
commit 5db1c7a813

View File

@@ -9,7 +9,7 @@ function execute_script($path)
$CI =& get_instance();
$version = preg_replace("/(.*_)?(.*).sql/", "$2", $path);
error_log("Migrating to $version");
error_log("Migrating to $version (file: $path)");
$sql = file_get_contents($path);