diff options
author | Thomas Lange <code@nerdmind.de> | 2021-07-01 19:45:12 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-07-01 19:45:12 +0200 |
commit | f0ea19767d502ec7b5afff7c66c2681292175a3b (patch) | |
tree | aa296a2ca7e904a0041a81a18e952fbfae484a1d /core/namespace/Migrator.php | |
parent | a0fddb8470f33d7c66ff79cdbf9956290d72db25 (diff) | |
download | blog-f0ea19767d502ec7b5afff7c66c2681292175a3b.tar.gz blog-f0ea19767d502ec7b5afff7c66c2681292175a3b.tar.xz blog-f0ea19767d502ec7b5afff7c66c2681292175a3b.zip |
Update database schema for coming category system
This commit updates the database schema and adds a new migration for the
upcoming category system. Please note that you need to have at least the
following MySQL/MariaDB versions to use the category system later:
MariaDB: 10.2.2
MySQL: 8.0
Diffstat (limited to 'core/namespace/Migrator.php')
-rw-r--r-- | core/namespace/Migrator.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/namespace/Migrator.php b/core/namespace/Migrator.php index 6eec9a5..8f31f7c 100644 --- a/core/namespace/Migrator.php +++ b/core/namespace/Migrator.php @@ -5,7 +5,7 @@ class Migrator { private $directory; private $migrations = []; - const CURRENT_SCHEMA_VERSION = 5; + const CURRENT_SCHEMA_VERSION = 6; #=============================================================================== # Fetch on-disk schema version from migration table |