From 1fcec2acc23e3ea78c5a9e0052323e637e90907f Mon Sep 17 00:00:00 2001 From: fadlydev Date: Tue, 21 Jan 2025 14:05:11 +0700 Subject: [PATCH] update goods entity --- src/entity/goods.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/entity/goods.ts b/src/entity/goods.ts index d66cbdc..5f74824 100644 --- a/src/entity/goods.ts +++ b/src/entity/goods.ts @@ -54,14 +54,14 @@ export class Goods { @Index() @Column({ nullable: false, - type: 'uuid', + type: 'varchar', }) created_by: string; @Index() @Column({ nullable: false, - type: 'uuid', + type: 'varchar', }) updated_by: string;