From 9fdc3c13148a7a25e4f7b037cfb314d6ef0c2755 Mon Sep 17 00:00:00 2001 From: az Date: Fri, 28 Nov 2025 03:04:59 -0500 Subject: [PATCH] Update README The migrations path is outdated now (just going over the setup again). --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d46bb5c4..ada60aba 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ postgres=# CREATE DATABASE clusterdev; We are using [Yoyo Migrations](https://ollycope.com/software/yoyo/) to manage tables, indexes, etc. in our database. To create tables in your local database, apply the migrations in `src/discord-cluster-manager/migrations` with the following command line: ``` -yoyo apply src/discord-cluster-manager/migrations \ +yoyo apply src/migrations \ -d postgresql://user:password@localhost/clusterdev ```