// DELIVERABLE 2: DATABASE MANAGEMENT WITH MONGODB
// Eduvos Online Library Database System
// QUESTION 2.1: Create the five collections from the ERD
db = db.getSiblingDB("EduvosOnlineLibraryDB");
db.createCollection("authors");
db.createCollection("books");
db.createCollection("members");
db.createCollection("bookAuthors");
db.createCollection("borrowedBooks");
To embed this project on your website, copy the following code and paste it into your website's HTML: