From a72ce6be9a9ed8bfb395466f7b53f25a0cfbfb2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=82=E3=81=BE=E3=81=BF=E3=82=84=20=E3=82=86=E3=81=86?= =?UTF-8?q?=E3=81=93?= <1@1234.sh> Date: Fri, 5 Aug 2016 10:47:53 +0800 Subject: [PATCH] Fixed uuid issue --- .../Migrations/MySqlMigrationsSqlGenerator.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Pomelo.EntityFrameworkCore.MySql/Migrations/MySqlMigrationsSqlGenerator.cs b/src/Pomelo.EntityFrameworkCore.MySql/Migrations/MySqlMigrationsSqlGenerator.cs index eab75a1cc..ca837717e 100644 --- a/src/Pomelo.EntityFrameworkCore.MySql/Migrations/MySqlMigrationsSqlGenerator.cs +++ b/src/Pomelo.EntityFrameworkCore.MySql/Migrations/MySqlMigrationsSqlGenerator.cs @@ -122,7 +122,6 @@ protected override void Generate(AlterColumnOperation operation, IModel model, M case "char(38)": case "uuid": case "uniqueidentifier": - builder.Append("UUID()"); break; default: throw new NotImplementedException($"Not supporting creating IsIdentity for {type}");