Skip to content

Commit

Permalink
Fix column type for SaaS
Browse files Browse the repository at this point in the history
  • Loading branch information
RomaricMourgues committed Mar 23, 2023
1 parent 9c50ebf commit d9b9f0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -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)
Expand Down
Expand Up @@ -16,7 +16,7 @@ export class PhpDriveFileVersion {
id: string;

@Type(() => String)
@Column("file_id", "string")
@Column("file_id", "timeuuid")
file_id: string;

@Type(() => String)
Expand Down

0 comments on commit d9b9f0a

Please sign in to comment.