You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 2, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: server/connectors/deploy-connector-postgres/src/main/scala/com/prisma/deploy/connector/postgres/database/PostgresJdbcDeployDatabaseMutationBuilder.scala
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -153,7 +153,7 @@ case class PostgresJdbcDeployDatabaseMutationBuilder(
153
153
case (DateTimeGCValue(dateTime), params) => params.setTimestamp(jodaDateTimeToSqlTimestampUTC(dateTime))
154
154
case (EnumGCValue(enum), params) => params.setString(enum)
155
155
case (JsonGCValue(json), params) => params.setString(json.toString())
156
-
case (UuidGCValue(uuid), params) =>sys.error("")
156
+
case (UuidGCValue(uuid), params) =>params.setObject(uuid, -2)
Copy file name to clipboardExpand all lines: server/connectors/deploy-connector/src/main/scala/com/prisma/deploy/connector/MigrationValueGenerator.scala
Copy file name to clipboardExpand all lines: server/integration-tests/integration-tests-mysql/src/test/scala/com/prisma/integration/PrefillingFieldsWithDefaultOrMigrationValueSpec.scala
"Creating a required Field of type UUID" should "not error when there is no defaultValue but there are no nodes yet" taggedAs (IgnoreMongo, IgnoreMySql) in {
0 commit comments