From 7cb94e75076f99496afc9e8f1d0ebcec89b152c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Avila=20SG?= Date: Mon, 4 Dec 2023 20:51:16 -0500 Subject: [PATCH] Remove trailing comma --- pkg/database/migrations/20231102165658_tables.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/database/migrations/20231102165658_tables.sql b/pkg/database/migrations/20231102165658_tables.sql index 0f5fe17..2b88175 100644 --- a/pkg/database/migrations/20231102165658_tables.sql +++ b/pkg/database/migrations/20231102165658_tables.sql @@ -37,7 +37,7 @@ CREATE TABLE IF NOT EXISTS teldrive.uploads ( channel_id bigint NOT NULL, "size" bigint NOT NULL, created_at timestamp DEFAULT timezone('utc'::text, now()), - PRIMARY KEY(upload_id, part_no), + PRIMARY KEY(upload_id, part_no) );