From 9c78f1fb6a545322d802c5a867af003d2144ebae Mon Sep 17 00:00:00 2001 From: eecavanna Date: Thu, 5 Dec 2024 23:27:36 -0800 Subject: [PATCH] Add an overview `README.md` file in each new subdirectory --- db/README.md | 7 +++++++ db/migrations/README.md | 3 +++ 2 files changed, 10 insertions(+) create mode 100644 db/README.md create mode 100644 db/migrations/README.md diff --git a/db/README.md b/db/README.md new file mode 100644 index 00000000..83195e1c --- /dev/null +++ b/db/README.md @@ -0,0 +1,7 @@ +# Database + +This directory contains files related to the MongoDB database managed by the Runtime. + +It has the following subdirectories: + +- `./migrations`: files related to migrating the MongoDB database diff --git a/db/migrations/README.md b/db/migrations/README.md new file mode 100644 index 00000000..5cf247a3 --- /dev/null +++ b/db/migrations/README.md @@ -0,0 +1,3 @@ +# Migrations + +This directory contains files related to migrating the MongoDB database between schemas.