split in env required and dynamic values

This commit is contained in:
Julian Krauser 2025-04-19 16:51:37 +02:00
parent f32143b7ac
commit 730c25a9a1
35 changed files with 491 additions and 198 deletions

View file

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