feat(engine): migrate monthly pre-update boundary

This commit is contained in:
2026-07-25 21:36:34 +00:00
parent bd57a99d0e
commit 5f390a46b9
12 changed files with 666 additions and 59 deletions
+9
View File
@@ -68,6 +68,12 @@ export interface TurnEngineInheritancePointRow {
value: number;
}
export interface TurnEngineGeneralAccessLogRow {
generalId: number;
userId: string | null;
refreshScoreTotal: number;
}
export interface TurnEngineCityRow {
id: number;
name: string;
@@ -382,6 +388,9 @@ export interface TurnEngineDatabaseClient {
inheritancePoint: {
findMany(args?: unknown): Promise<TurnEngineInheritancePointRow[]>;
};
generalAccessLog: {
findMany(args?: unknown): Promise<TurnEngineGeneralAccessLogRow[]>;
};
city: {
findMany(args?: unknown): Promise<TurnEngineCityRow[]>;
createMany(args: { data: TurnEngineCityCreateManyInput[] }): Promise<unknown>;