diff --git a/twake/backend/node/src/cli/cmds/migration_cmds/php-drive-file/php-drive-file-entity.ts b/twake/backend/node/src/cli/cmds/migration_cmds/php-drive-file/php-drive-file-entity.ts index 05b326801..74b873017 100644 --- a/twake/backend/node/src/cli/cmds/migration_cmds/php-drive-file/php-drive-file-entity.ts +++ b/twake/backend/node/src/cli/cmds/migration_cmds/php-drive-file/php-drive-file-entity.ts @@ -12,7 +12,7 @@ export const TYPE = "drive_file"; }) export class PhpDriveFile { @Type(() => String) - @Column("workspace_id", "timeuuid") + @Column("workspace_id", "string") workspace_id: string; @Type(() => String) diff --git a/twake/backend/node/src/cli/cmds/migration_cmds/php-drive-file/php-drive-file-version-entity.ts b/twake/backend/node/src/cli/cmds/migration_cmds/php-drive-file/php-drive-file-version-entity.ts index 69ecdd052..b722fb050 100644 --- a/twake/backend/node/src/cli/cmds/migration_cmds/php-drive-file/php-drive-file-version-entity.ts +++ b/twake/backend/node/src/cli/cmds/migration_cmds/php-drive-file/php-drive-file-version-entity.ts @@ -16,7 +16,7 @@ export class PhpDriveFileVersion { id: string; @Type(() => String) - @Column("file_id", "string") + @Column("file_id", "timeuuid") file_id: string; @Type(() => String)