add 'items.' to 'gear.owned'

This commit is contained in:
Alice Harris 2014-12-31 15:42:46 +10:00
parent ccfe48099f
commit 774bb7bc3a

View file

@ -1,11 +1,11 @@
db.users.update(
{'gear.owned.head_special_nye':{$ne:null}},
{$set:{'gear.owned.head_special_nye2014':false}},
{'items.gear.owned.head_special_nye':{$ne:null}},
{$set:{'items.gear.owned.head_special_nye2014':false}},
{multi:1}
)
db.users.update(
{'gear.owned.head_special_nye':null},
{$set:{'gear.owned.head_special_nye':false}},
{'items.gear.owned.head_special_nye':null},
{$set:{'items.gear.owned.head_special_nye':false}},
{multi:1}
)