From d69d7e82b8bbb567668c935ace848c7dcf750b08 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Thu, 24 Jun 2021 21:09:24 +0200 Subject: Implement database schema Migrator This commit implements the new database schema Migrator which keeps track of the on-disk schema and the schema used by the codebase. It tries to makes future database schema upgrades user-friendlier. --- core/application.php | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'core/application.php') diff --git a/core/application.php b/core/application.php index 21ab203..d6c9bd0 100644 --- a/core/application.php +++ b/core/application.php @@ -141,6 +141,11 @@ require 'functions.php'; $Language = Application::getLanguage(); $Database = Application::getDatabase(); +#=============================================================================== +# Include migration detection +#=============================================================================== +require 'migrations.php'; + #=============================================================================== # Check if "304 Not Modified" and ETag header should be sent #=============================================================================== -- cgit v1.2.3