query store

This commit is contained in:
Julian Krauser 2024-12-18 22:27:33 +01:00
parent 7ca51c3670
commit 6b7b5a99d6
9 changed files with 36 additions and 8 deletions

View file

@ -5,6 +5,9 @@ export class query {
@PrimaryColumn({ generated: "increment", type: "int" })
id: number;
@Column({ type: "varchar", length: 255, unique: true })
title: string;
@Column({ type: "text", default: "" })
query: string;
}