aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-05-02 01:08:28 +0200
committerChristian Grothoff <christian@grothoff.org>2018-05-02 01:08:28 +0200
commitd2eed41d5637e802c9b8c6a8d0648636c16e5b88 (patch)
treebea96c86c8fbe8a4ef78eeac7bf382796bcfc146
parent857f8c009c4fde3d3ec9d6d0b4af48e93684fd84 (diff)
comma missing
-rw-r--r--src/namestore/plugin_namestore_postgres.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/namestore/plugin_namestore_postgres.c b/src/namestore/plugin_namestore_postgres.c
index 67c72c3c28..d7907b1a6e 100644
--- a/src/namestore/plugin_namestore_postgres.c
+++ b/src/namestore/plugin_namestore_postgres.c
@@ -84,7 +84,7 @@ database_setup (struct Plugin *plugin)
" rvalue BYTEA NOT NULL DEFAULT '',"
" record_count INTEGER NOT NULL DEFAULT 0,"
" record_data BYTEA NOT NULL DEFAULT '',"
- " label TEXT NOT NULL DEFAULT ''"
+ " label TEXT NOT NULL DEFAULT '',"
" CONSTRAINT zl UNIQUE (zone_private_key,label)"
")"
"WITH OIDS");