Fix flat field metadata date type (#16445)

# Introduction
Following https://github.com/twentyhq/twenty/pull/16420
This commit is contained in:
Paul Rastoin
2025-12-09 19:53:36 +01:00
committed by GitHub
parent 83fc434c5d
commit 7b98804ec1
22 changed files with 75 additions and 90 deletions
@@ -130,8 +130,8 @@ describe('WorkspaceEntityManager', () => {
objectMetadataId: 'test-entity-id',
isNullable: true,
isLabelSyncedWithName: false,
createdAt: new Date(),
updatedAt: new Date(),
createdAt: new Date().toISOString(),
updatedAt: new Date().toISOString(),
universalIdentifier: 'field-id',
defaultValue: null,
description: null,
@@ -78,8 +78,8 @@ describe('WorkspaceRepository', () => {
icon: 'IconKey',
workspaceId: 'test-workspace-id',
universalIdentifier: 'id-field-universal-id',
createdAt: new Date(),
updatedAt: new Date(),
createdAt: new Date().toISOString(),
updatedAt: new Date().toISOString(),
defaultValue: null,
options: null,
settings: null,