fix: workspace migration isNullable (#2939)

This commit is contained in:
Jérémy M 2023-12-12 15:18:37 +01:00 committed by GitHub
parent 6bc7a58902
commit 8381869c7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -232,7 +232,7 @@ export class WorkspaceMigrationRunnerService {
(value): value is string => typeof value === 'string',
),
isArray: migrationColumn.isArray,
isNullable: true,
isNullable: migrationColumn.isNullable,
}),
);
}