Skip to content

Commit

Permalink
Forgot to bump version.php and do the container-install.php change.
Browse files Browse the repository at this point in the history
  • Loading branch information
samilliken committed Dec 19, 2020
1 parent aa80262 commit 8958681
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions container-install.php
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,12 @@ function upgrade(){
error_log("Applying database update from 19.01 to 20.01");
$results[]=applyupdate("db-19.01-to-20.01.sql");

$config->rebuild();
}
if($version=="20.01"){
error_log("Applying database update from 20.01 to 20.02");
$results[]=applyupdate("db-20.01-to-20.02.sql");

$config->rebuild();
}
}
Expand Down
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php
define( "VERSION", "20.01" );
define( "VERSION", "20.02" );
?>

0 comments on commit 8958681

Please sign in to comment.