Changed the type of 'items' to varchar(255).

64 characters was too small to save the items
This commit is contained in:
Joshua van Kleef 2016-09-17 17:31:40 +02:00 committed by GitHub
parent db0ffe0985
commit ccb9b4c3f4

View File

@ -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)
PRIMARY KEY (id)