psycstore
authorGabor X Toth <*@tg-x.net>
Wed, 12 Oct 2016 22:07:34 +0000 (22:07 +0000)
committerGabor X Toth <*@tg-x.net>
Wed, 12 Oct 2016 22:07:34 +0000 (22:07 +0000)
src/psycstore/plugin_psycstore_mysql.c
src/psycstore/plugin_psycstore_sqlite.c

index 01a0282c8b6e8280e0b9021f884873d7e803377e..c76e7e6b12d2337ce2e7dcdad624e41494309476 100644 (file)
@@ -296,7 +296,7 @@ database_setup (struct Plugin *plugin)
   /* Create tables */
   STMT_RUN ("CREATE TABLE IF NOT EXISTS channels (\n"
             " id BIGINT UNSIGNED AUTO_INCREMENT,\n"
-            " pub_key BLOB(23),\n"
+            " pub_key BLOB(32),\n"
             " max_state_message_id BIGINT UNSIGNED,\n"
             " state_hash_message_id BIGINT UNSIGNED,\n"
             " PRIMARY KEY(id),\n"
index 4d21696ce52d12f6b8fe00cfd9279c25a97e71de..69291b4406338b5588c19dcbb21507084dedb31a 100644 (file)
@@ -348,7 +348,7 @@ database_setup (struct Plugin *plugin)
   sql_exec (plugin->dbh,
             "CREATE TABLE IF NOT EXISTS channels (\n"
             "  id INTEGER PRIMARY KEY,\n"
-            "  pub_key BLOB UNIQUE,\n"
+            "  pub_key BLOB(32) UNIQUE,\n"
             "  max_state_message_id INTEGER,\n" // last applied state message ID
             "  state_hash_message_id INTEGER\n" // last message ID with a state hash
             ");");
@@ -356,7 +356,7 @@ database_setup (struct Plugin *plugin)
   sql_exec (plugin->dbh,
             "CREATE TABLE IF NOT EXISTS slaves (\n"
             "  id INTEGER PRIMARY KEY,\n"
-            "  pub_key BLOB UNIQUE\n"
+            "  pub_key BLOB(32) UNIQUE\n"
             ");");
 
   sql_exec (plugin->dbh,