Using the mongo shell I want to be able to migrate my existing schema for my hours property on my collection from this:
sunday: [
{
end: '6:30 PM',
start: '11:00 AM',
},
],
monday: ...
To this:
sunday: {
hours: [
{
end: '6:30 PM',
start: '11:00 AM',
},
],
open: true,
},