Added basic CRUD operations

This commit is contained in:
2025-12-11 19:07:30 +01:00
parent 7c93577132
commit 46f2cf2d55
30 changed files with 615 additions and 139 deletions

View File

@@ -0,0 +1,11 @@
db = db.getSiblingDB("board-mate-db");
db.createCollection("games");
db.createUser({
user: "board-mate-user",
pwd: "apx820kcng",
roles: [
{ role: "readWrite", db: "board-mate-db" }
]
});