diff db/pubsub.sql @ 359:1d93f94feee3

psql (schema): fixed forgotten comma
author Goffi <goffi@goffi.org>
date Wed, 11 Oct 2017 19:15:14 +0200
parents 4d4575911060
children 6350622d9eb9
line wrap: on
line diff
--- a/db/pubsub.sql	Wed Oct 11 19:14:29 2017 +0200
+++ b/db/pubsub.sql	Wed Oct 11 19:15:14 2017 +0200
@@ -16,7 +16,7 @@
     send_last_published_item text NOT NULL DEFAULT 'on_sub'
         CHECK (send_last_published_item IN ('never', 'on_sub')),
     publish_model text NOT NULL DEFAULT 'publishers'
-        CHECK (publish_model IN ('publishers', 'subscribers', 'open'))
+        CHECK (publish_model IN ('publishers', 'subscribers', 'open')),
     schema xml;
 );