Przeglądaj źródła

feat: add country to device

x1ongzhu 1 rok temu
rodzic
commit
f9a3c08549
1 zmienionych plików z 6 dodań i 0 usunięć
  1. 6 0
      src/task/entities/task-item.entity.ts

+ 6 - 0
src/task/entities/task-item.entity.ts

@@ -36,4 +36,10 @@ export class TaskItem {
 
     @Column({ default: false })
     embed: boolean
+
+    @Column({ nullable: true })
+    country: string
+
+    @Column({ type: 'text', nullable: true })
+    clashProfile: string
 }