Skip to content

Commit 554eac0

Browse files
committed
Fix size of Uuid column
1 parent 816f6c3 commit 554eac0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Providers/MySQL/MySQLColumn.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ private static function getSize(AbstractColumn $entityColumn, ?Column $attribute
208208
}
209209
return match ($entityColumn::class) {
210210
Columns\BoolColumn::class => 1,
211-
Columns\UuidColumn::class => 32,
211+
Columns\UuidColumn::class => 36,
212212
Columns\StringColumn::class, Columns\CastableColumn::class => 255,
213213
default => null,
214214
};

0 commit comments

Comments
 (0)