query store CRUD

This commit is contained in:
Julian Krauser 2024-12-14 16:11:53 +01:00
parent 2518a1046f
commit 7497787ae4
12 changed files with 327 additions and 5 deletions

View file

@ -44,6 +44,8 @@ import { reset } from "./entity/reset";
import { ResetToken1732358596823 } from "./migrations/1732358596823-resetToken";
import { SMSAlarming1732696919191 } from "./migrations/1732696919191-SMSAlarming";
import { SecuringCalendarType1733249553766 } from "./migrations/1733249553766-securingCalendarType";
import { query } from "./entity/query";
import { QueryStore1734187754677 } from "./migrations/1734187754677-queryStore";
const dataSource = new DataSource({
type: DB_TYPE as any,
@ -82,6 +84,7 @@ const dataSource = new DataSource({
protocolPrintout,
calendar,
calendarType,
query,
],
migrations: [
Initial1724317398939,
@ -98,6 +101,7 @@ const dataSource = new DataSource({
ResetToken1732358596823,
SMSAlarming1732696919191,
SecuringCalendarType1733249553766,
QueryStore1734187754677,
],
migrationsRun: true,
migrationsTransactionMode: "each",