From 02dc8fa581de54279872db48db0704a04ad43098 Mon Sep 17 00:00:00 2001 From: Mark Scherer Date: Tue, 14 Nov 2023 14:20:46 +0100 Subject: [PATCH] Update SQLiteAdapter.php --- src/Phinx/Db/Adapter/SQLiteAdapter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Phinx/Db/Adapter/SQLiteAdapter.php b/src/Phinx/Db/Adapter/SQLiteAdapter.php index 3d83339ea..36906a601 100644 --- a/src/Phinx/Db/Adapter/SQLiteAdapter.php +++ b/src/Phinx/Db/Adapter/SQLiteAdapter.php @@ -40,7 +40,7 @@ class SQLiteAdapter extends PdoAdapter protected static array $supportedColumnTypes = [ self::PHINX_TYPE_BIG_INTEGER => 'biginteger', self::PHINX_TYPE_BINARY => 'binary_blob', - self::PHINX_TYPE_BINARYUUID => 'binaryuuid', + self::PHINX_TYPE_BINARYUUID => 'binary(16)', self::PHINX_TYPE_BLOB => 'blob', self::PHINX_TYPE_BOOLEAN => 'boolean_integer', self::PHINX_TYPE_CHAR => 'char',