Skip to content

Commit 8990d35

Browse files
authored
downcased UUIDs
removing `strtoupper` from uuid to be standard
1 parent 3aa847c commit 8990d35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Uuids.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ protected static function bootUuids()
1414
{
1515
static::creating(function ($model) {
1616
if (!$model->{config('uuid.default_uuid_column')}) {
17-
$model->{config('uuid.default_uuid_column')} = strtoupper(Uuid::uuid4()->toString());
17+
$model->{config('uuid.default_uuid_column')} = Uuid::uuid4()->toString();
1818
}
1919
});
2020
static::saving(function ($model) {

0 commit comments

Comments
 (0)