From 1c643b3625102e3fc209655811f874713469899c Mon Sep 17 00:00:00 2001 From: Mathis Date: Fri, 3 May 2024 09:52:07 +0200 Subject: [PATCH] feat(interfaces): add optional `id` property to `IDbRent` interface A new optional `id` property has been added to `IDbRent` interface in the `interfaces` scope. This allows for more flexibility when working with rent objects in the database. Signed-off-by: Mathis --- src/interfaces/database/IDbRent.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/interfaces/database/IDbRent.ts b/src/interfaces/database/IDbRent.ts index 5ceb664..edf8b2f 100644 --- a/src/interfaces/database/IDbRent.ts +++ b/src/interfaces/database/IDbRent.ts @@ -1,4 +1,5 @@ export interface IDbRent { + id?: string; vehicle_id: string; user_id: string; active: boolean;