mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-01 19:50:37 +00:00
11 lines
285 B
JavaScript
11 lines
285 B
JavaScript
db.users.update(
|
|
{'items.gear.owned.head_special_nye':{$ne:null}},
|
|
{$set:{'items.gear.owned.head_special_nye2014':false}},
|
|
{multi:1}
|
|
)
|
|
|
|
db.users.update(
|
|
{'items.gear.owned.head_special_nye':null},
|
|
{$set:{'items.gear.owned.head_special_nye':false}},
|
|
{multi:1}
|
|
)
|