diff options
author | Thomas Lange <code@nerdmind.de> | 2021-07-01 15:56:42 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-07-01 15:56:42 +0200 |
commit | 5824bc0991a90f033ef288925a68df19164470b0 (patch) | |
tree | bb2e1dc48af533fde81f8e5f556a3e5d0fb304ea /core/namespace/Migrator.php | |
parent | cd87a869b1d52fd65f53875527abf3205a4098a0 (diff) | |
download | blog-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/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 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 |