From 6e48c0a0888448f901fd3261e04a52876b7e4541 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Tue, 27 Feb 2024 06:09:09 +0100 Subject: [PATCH] Database migration readme --- backend/migrations/README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 backend/migrations/README.md diff --git a/backend/migrations/README.md b/backend/migrations/README.md new file mode 100644 index 0000000..18b5e34 --- /dev/null +++ b/backend/migrations/README.md @@ -0,0 +1,14 @@ +# Database migrations + +This directory contains all the database migrations for the backend. + +[!WARNING] +Keep in mind that these migrations are **not yet stable**. + +## Running migrations + +In the root of the backend directory, run: + +```bash +make migrate +```