From 8381869c7fafa8d4b5967ec842a355e07a720344 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20M?= Date: Tue, 12 Dec 2023 15:18:37 +0100 Subject: [PATCH] fix: workspace migration isNullable (#2939) --- .../workspace-migration-runner.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/twenty-server/src/workspace/workspace-migration-runner/workspace-migration-runner.service.ts b/packages/twenty-server/src/workspace/workspace-migration-runner/workspace-migration-runner.service.ts index 0fe6a210f..d2eb92e70 100644 --- a/packages/twenty-server/src/workspace/workspace-migration-runner/workspace-migration-runner.service.ts +++ b/packages/twenty-server/src/workspace/workspace-migration-runner/workspace-migration-runner.service.ts @@ -232,7 +232,7 @@ export class WorkspaceMigrationRunnerService { (value): value is string => typeof value === 'string', ), isArray: migrationColumn.isArray, - isNullable: true, + isNullable: migrationColumn.isNullable, }), ); }