diff options
Diffstat (limited to '')
-rw-r--r-- | sql/mysql.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/mysql.sql b/sql/mysql.sql index aea9e454e..1d7e4c4e7 100644 --- a/sql/mysql.sql +++ b/sql/mysql.sql @@ -251,8 +251,8 @@ CREATE TABLE pubsub_item ( nodeid bigint, itemid text NOT NULL, publisher text NOT NULL, - creation text NOT NULL, - modification text NOT NULL, + creation varchar(32) NOT NULL, + modification varchar(32) NOT NULL, payload text NOT NULL ) ENGINE=InnoDB CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; CREATE INDEX i_pubsub_item_itemid ON pubsub_item(itemid(36)); |