Browse Source

add teamId

itizawa 5 năm trước cách đây
mục cha
commit
05ed87f40d
1 tập tin đã thay đổi với 3 bổ sung0 xóa
  1. 3 0
      packages/slackbot-proxy/src/entities/order.ts

+ 3 - 0
packages/slackbot-proxy/src/entities/order.ts

@@ -14,6 +14,9 @@ export class Order {
   @UpdateDateColumn()
   readonly updatedAt: Date;
 
+  @Column()
+  teamId: string;
+
   @Column({ nullable: true, default: false })
   isCompleted?: boolean;