From 356b6869adb40cd3f50380b22b9160405dc0ef97 Mon Sep 17 00:00:00 2001 From: Mathis Date: Thu, 10 Oct 2024 15:26:34 +0200 Subject: [PATCH] Remove commented-out code in schema Eliminated a comment in the FilesGroupTable definition that was redundant. This helps in maintaining cleaner and more readable code. --- apps/backend/src/app/db/schema.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/backend/src/app/db/schema.ts b/apps/backend/src/app/db/schema.ts index fc6d47c..a59754b 100644 --- a/apps/backend/src/app/db/schema.ts +++ b/apps/backend/src/app/db/schema.ts @@ -105,7 +105,6 @@ export const FilesTable = pgTable("files", { }); export const FilesGroupTable = pgTable("f_groups", { - // Unique identifier on a technical aspect. uuid: p.uuid("uuid").unique().primaryKey().defaultRandom().notNull(), groupName: p