From 6ab6df02ed0985e028e64788adfc6ee35e4983c3 Mon Sep 17 00:00:00 2001 From: realaravinth Date: Wed, 11 May 2022 13:15:46 +0530 Subject: [PATCH] fix: use db/db-migrations for DB migrations --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b580d34e..829b2c79 100644 --- a/Makefile +++ b/Makefile @@ -74,7 +74,7 @@ lint: ## Lint codebase cd $(OPENAPI)&& yarn test migrate: ## Run database migrations - cargo run --bin tests-migrate + cd db/db-migrations/ && cargo run release: frontend ## Build app with release optimizations cargo build --release