Mercurial > libervia-pubsub
changeset 359:1d93f94feee3
psql (schema): fixed forgotten comma
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 11 Oct 2017 19:15:14 +0200 |
parents | 9e40fc16f4df |
children | 6350622d9eb9 |
files | db/pubsub.sql |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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; );