mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-07-08 21:23:54 -05:00
Changed the type of 'items' to varchar(255).
64 characters was too small to save the items
This commit is contained in:
parent
db0ffe0985
commit
ccb9b4c3f4
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user