import { Column, Entity, PrimaryColumn } from "typeorm"; @Entity() export class user { @PrimaryColumn({ type: "varchar", length: 255 }) topic: string; @PrimaryColumn({ type: "varchar", length: 255 }) key: string; @Column({ type: "varchar", length: 255 }) value: string; }