Skip to content

Commit d9b9f0a

Browse files
author
Romaric Mourgues
authored
Fix column type for SaaS
1 parent 9c50ebf commit d9b9f0a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

twake/backend/node/src/cli/cmds/migration_cmds/php-drive-file/php-drive-file-entity.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const TYPE = "drive_file";
1212
})
1313
export class PhpDriveFile {
1414
@Type(() => String)
15-
@Column("workspace_id", "timeuuid")
15+
@Column("workspace_id", "string")
1616
workspace_id: string;
1717

1818
@Type(() => String)

twake/backend/node/src/cli/cmds/migration_cmds/php-drive-file/php-drive-file-version-entity.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export class PhpDriveFileVersion {
1616
id: string;
1717

1818
@Type(() => String)
19-
@Column("file_id", "string")
19+
@Column("file_id", "timeuuid")
2020
file_id: string;
2121

2222
@Type(() => String)

0 commit comments

Comments
 (0)