From 5824bc0991a90f033ef288925a68df19164470b0 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Thu, 1 Jul 2021 15:56:42 +0200 Subject: 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. --- core/namespace/Migrator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/namespace/Migrator.php') 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 -- cgit v1.2.3