From 0330358139267816f2ed62b7c41395980086dac2 Mon Sep 17 00:00:00 2001 From: Mathis Date: Thu, 17 Oct 2024 12:25:11 +0200 Subject: [PATCH] Add missing semicolons for consistency This commit adds missing semicolons to type definitions in schema.ts for consistent code style and better readability. No functional changes were made to the existing code logic. --- apps/backend/src/app/db/schema.ts | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/apps/backend/src/app/db/schema.ts b/apps/backend/src/app/db/schema.ts index 411a00f..61401a4 100644 --- a/apps/backend/src/app/db/schema.ts +++ b/apps/backend/src/app/db/schema.ts @@ -103,7 +103,7 @@ export const FilesTable = pgTable("files", { }) .notNull(), }); -export type IFileTable = typeof FilesTable.$inferSelect +export type IFileTable = typeof FilesTable.$inferSelect; export const FilesGroupTable = pgTable("f_groups", { uuid: p.uuid("uuid").unique().primaryKey().defaultRandom().notNull(), @@ -115,8 +115,7 @@ export const FilesGroupTable = pgTable("f_groups", { .unique() .notNull(), }); -export type IFileGroupTable = typeof FilesGroupTable.$inferSelect - +export type IFileGroupTable = typeof FilesGroupTable.$inferSelect; //TODO Files types export const FilesTypesTable = pgTable("f_types", { @@ -137,7 +136,7 @@ export const FilesTypesTable = pgTable("f_types", { .unique() .notNull(), }); -export type IFilesTypesTable = typeof FilesTypesTable.$inferSelect +export type IFilesTypesTable = typeof FilesTypesTable.$inferSelect; export const MachinesTable = pgTable("machines", { id: p.uuid("id").unique().primaryKey().defaultRandom().notNull(), @@ -156,7 +155,7 @@ export const MachinesTable = pgTable("machines", { //supported files format }); -export type IMachinesTable = typeof MachinesTable.$inferSelect +export type IMachinesTable = typeof MachinesTable.$inferSelect; //TODO Many to Many table betwen File en Machine export const FilesForMachinesTable = pgTable("files_for_machines", { @@ -172,7 +171,7 @@ export const FilesForMachinesTable = pgTable("files_for_machines", { .notNull() .references(() => MachinesTable.id), }); -export type IFilesForMachinesTable = typeof FilesForMachinesTable.$inferSelect +export type IFilesForMachinesTable = typeof FilesForMachinesTable.$inferSelect; export const FilesTypeForMachine = pgTable("f_type_for_machines", { id: p.uuid("id").unique().primaryKey().defaultRandom().notNull(), @@ -186,11 +185,11 @@ export const FilesTypeForMachine = pgTable("f_type_for_machines", { .notNull() .references(() => FilesTypesTable.id), }); -export type IFilesTypeForMachine = typeof FilesTypeForMachine.$inferSelect +export type IFilesTypeForMachine = typeof FilesTypeForMachine.$inferSelect; export interface IWithCount { count: number; limit: number; currentOffset: number; - data: T[] -} \ No newline at end of file + data: T[]; +}