aboutsummaryrefslogtreecommitdiffstats
path: root/core/namespace
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2021-07-01 15:56:42 +0200
committerThomas Lange <code@nerdmind.de>2021-07-01 15:56:42 +0200
commit5824bc0991a90f033ef288925a68df19164470b0 (patch)
treebb2e1dc48af533fde81f8e5f556a3e5d0fb304ea /core/namespace
parentcd87a869b1d52fd65f53875527abf3205a4098a0 (diff)
downloadblog-5824bc0991a90f033ef288925a68df19164470b0.tar.gz
blog-5824bc0991a90f033ef288925a68df19164470b0.tar.xz
blog-5824bc0991a90f033ef288925a68df19164470b0.zip
Update database schema: Make id columns unsigned
This commit updates the database schema and adds a new migration to modify the signed integer columns to make them unsigned.
Diffstat (limited to 'core/namespace')
-rw-r--r--core/namespace/Migrator.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/namespace/Migrator.php b/core/namespace/Migrator.php
index 3096862..1a05cc1 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 = 4;
+ const CURRENT_SCHEMA_VERSION = 5;
#===============================================================================
# Fetch on-disk schema version from migration table