From befe9448cb631d5bb093b95d6435ef9677916a09 Mon Sep 17 00:00:00 2001 From: Mike Lang Date: Wed, 23 Oct 2024 17:47:38 +1100 Subject: [PATCH] Fix trailing comma in schema --- postgres/schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgres/schema.sql b/postgres/schema.sql index 97d4977..29b9dd8 100644 --- a/postgres/schema.sql +++ b/postgres/schema.sql @@ -194,5 +194,5 @@ CREATE TABLE templates ( crop INTEGER[] NOT NULL CHECK ( cardinality(thumbnail_crop) = 4), location INTEGER[] NOT NULL CHECK ( - cardinality(thumbnail_crop) = 4), + cardinality(thumbnail_crop) = 4) );