Remove trailing comma

This commit is contained in:
José Avila SG 2023-12-04 20:51:16 -05:00 committed by divyam234
parent 0a1c5d679e
commit 7cb94e7507

View file

@ -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)
);