From ccb9b4c3f4b7de04af4c1b03a844bbf10f3cb8ad Mon Sep 17 00:00:00 2001 From: Joshua van Kleef Date: Sat, 17 Sep 2016 17:31:40 +0200 Subject: [PATCH] Changed the type of 'items' to varchar(255). 64 characters was too small to save the items --- src/db/tables/users.table | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/db/tables/users.table b/src/db/tables/users.table index 63f2fc8..3689e8d 100644 --- a/src/db/tables/users.table +++ b/src/db/tables/users.table @@ -12,8 +12,8 @@ altitude double NOT NULL, send_marketing_emails tinyint(1) NOT NULL, send_push_notifications tinyint(1) NOT NULL, candies varchar(64) NOT NULL DEFAULT '{}', -items varchar(64) NOT NULL DEFAULT '{}', +items varchar(255) NOT NULL DEFAULT '{}', avatar varchar(128) NOT NULL DEFAULT '{}', pokedex varchar(64) NOT NULL DEFAULT '{}', tutorial varchar(64) NOT NULL DEFAULT '{"0":1,"1":1,"3":1,"4":1,"7":1}', -PRIMARY KEY (id) \ No newline at end of file +PRIMARY KEY (id)