aboutsummaryrefslogtreecommitdiff
path: root/src/psycstore
diff options
context:
space:
mode:
authorDaniel Golle <daniel@makrotopia.org>2016-10-12 23:12:56 +0000
committerDaniel Golle <daniel@makrotopia.org>2016-10-12 23:12:56 +0000
commit41e2d697bb63faabe9ffbaccd7ca5d9b93989d6b (patch)
tree67539a8eb74c27fddffee236b2dfd19a31b8ce95 /src/psycstore
parent41f2b9356fb9649d7b1732603aad2831648da323 (diff)
downloadgnunet-41e2d697bb63faabe9ffbaccd7ca5d9b93989d6b.tar.gz
gnunet-41e2d697bb63faabe9ffbaccd7ca5d9b93989d6b.zip
psycstore: postgres: remove size modifier from BYTEA fields
ERROR: type modifier is not allowed for type "bytea"
Diffstat (limited to 'src/psycstore')
-rw-r--r--src/psycstore/plugin_psycstore_postgres.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/psycstore/plugin_psycstore_postgres.c b/src/psycstore/plugin_psycstore_postgres.c
index 3439856b9..9240d3334 100644
--- a/src/psycstore/plugin_psycstore_postgres.c
+++ b/src/psycstore/plugin_psycstore_postgres.c
@@ -100,7 +100,7 @@ database_setup (struct Plugin *plugin)
100 GNUNET_POSTGRES_exec(plugin->dbh, 100 GNUNET_POSTGRES_exec(plugin->dbh,
101 "CREATE TABLE IF NOT EXISTS channels (\n" 101 "CREATE TABLE IF NOT EXISTS channels (\n"
102 " id SERIAL,\n" 102 " id SERIAL,\n"
103 " pub_key BYTEA(32),\n" 103 " pub_key BYTEA,\n"
104 " max_state_message_id BIGINT,\n" 104 " max_state_message_id BIGINT,\n"
105 " state_hash_message_id BIGINT,\n" 105 " state_hash_message_id BIGINT,\n"
106 " PRIMARY KEY(id)\n" 106 " PRIMARY KEY(id)\n"
@@ -121,7 +121,7 @@ database_setup (struct Plugin *plugin)
121 GNUNET_POSTGRES_exec(plugin->dbh, 121 GNUNET_POSTGRES_exec(plugin->dbh,
122 "CREATE TABLE IF NOT EXISTS slaves (\n" 122 "CREATE TABLE IF NOT EXISTS slaves (\n"
123 " id SERIAL,\n" 123 " id SERIAL,\n"
124 " pub_key BYTEA(32),\n" 124 " pub_key BYTEA,\n"
125 " PRIMARY KEY(id)\n" 125 " PRIMARY KEY(id)\n"
126 ")" "WITH OIDS")) || 126 ")" "WITH OIDS")) ||
127 127