Skip to content

Commit 821ee7c

Browse files
committed
MySQL UniqueIdentifier is CHAR(38)
1 parent e4bf919 commit 821ee7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SQL/Serializers/MySqlSerializer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ public override string SerializeDataType(DataType dataType, int size, int precis
207207
case DataType.Image:
208208
return "LONGBLOB";
209209
case DataType.UniqueIdentifier:
210-
return "UNIQUEIDENTIFIER";
210+
return "CHAR(38)";
211211
default:
212212
return base.SerializeDataType(dataType, size, precision, scale);
213213
}

0 commit comments

Comments
 (0)