From c18f96b8c745c7529fe5394eed99fb17ffd578c9 Mon Sep 17 00:00:00 2001 From: Marco Pedone Date: Tue, 10 Mar 2026 17:03:55 +0100 Subject: [PATCH] fix: remove trailing comma in user_etichette table definition --- apps/db/migrations/36_user_etichette.up.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/db/migrations/36_user_etichette.up.sql b/apps/db/migrations/36_user_etichette.up.sql index 53bf1db..d9b6b05 100644 --- a/apps/db/migrations/36_user_etichette.up.sql +++ b/apps/db/migrations/36_user_etichette.up.sql @@ -1,6 +1,6 @@ CREATE TABLE IF NOT EXISTS public.user_etichette ( "userId" UUID NOT NULL, - "etichettaId" integer NOT NULL, + "etichettaId" integer NOT NULL ); DO $$ BEGIN