kreendurron / BRC-Bot

A Discord Bot for The Bible Reading Challenge
1 stars 1 forks source link

Update the reading plan's data model #4

Open kreendurron opened 2 years ago

kreendurron commented 2 years ago

Currently the model is:

data = {
  "Month": {
    "day": "Lord's Day",
    "day1": "Song of Songs 1–8",
    days etc...
  },
  month 2 etc...

Update should look like:

data = {
  "Month": {
    "Day": {
      "r1": "",
      "r2": "Song of Songs 1–8",
    },
    day2 etc...
  },
  month2 etc...
}
kreendurron commented 2 years ago

Status Changed: Work In Progress

kreendurron commented 2 years ago

Data model is currently in a JSON file. Let's move it to MongoDB.