Skip to content

Commit

Permalink
Fix up UUID binary16 support (#2239)
Browse files Browse the repository at this point in the history
* Fix up UUID binary16 support
  • Loading branch information
dereuromark authored Nov 14, 2023
1 parent 5a78c76 commit e1be941
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Phinx/Db/Adapter/SQLiteAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 => 'binary',
self::PHINX_TYPE_BINARYUUID => 'binary(16)',
self::PHINX_TYPE_BLOB => 'blob',
self::PHINX_TYPE_BOOLEAN => 'boolean_integer',
self::PHINX_TYPE_CHAR => 'char',
Expand Down

0 comments on commit e1be941

Please sign in to comment.