ff-admin-server/src/entity/management/settings.ts

14 lines
287 B
TypeScript
Raw Normal View History

2025-04-19 11:26:35 +02:00
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;
}