RowinVanAmsterdam / dating-app-expanded

Repo for the Dating App
1 stars 0 forks source link

Fix database #9

Closed RowinVanAmsterdam closed 5 years ago

RowinVanAmsterdam commented 5 years ago

I created a new database for games, called MatchTag. Made some collections and did changed the code. So the database of locations is no longer addressed.

Database: MatchTag Collections:

RowinVanAmsterdam commented 5 years ago

thanks for the review, you're right about the collection names. So I did changed them with underscores. We will write the games by hand, if that's working, we will look into using an API. But for now, we will write them by hand.

Database: MatchTag Collections: members call_of_duty_black_ops_4 red_dead_redemption_2

I used the following steps to rename the collections:

  1. In terminal: mongo {link to the db + username + password}
  2. use MatchTag
  3. db.collectionname.renameCollection( "newcollectionname" )

source: https://docs.mongodb.com/manual/reference/command/renameCollection/