ga-wdi-boston / mongodb-crud

An introduction to MongoDB
Other
1 stars 136 forks source link

Change the order of CRUD #31

Open MicFin opened 7 years ago

MicFin commented 7 years ago

@gaand would like to change the order of how the CRUD actions are taught to match the way the SQL and AJAX lessons are taught.

Currently

  1. Create
  2. Read
  3. Update
  4. Delete

Should be:

  1. Read
  2. Delete
  3. Update
  4. Create

The database will need to be seeded from the CSV so that there are documents to Read. The scripts to load a CSV are on the solution branch like here.

Also, keep in mind that the lesson flow is based on doing a demo starting the database from scratch so the lesson flow may need to be adjusted so that the database can be created and seeded in order to demonstrate Read and not Create first.