From ba85626969b6f58cf3fecc974c14d95e56c4137b Mon Sep 17 00:00:00 2001 From: realaravinth Date: Fri, 16 Sep 2022 18:28:01 +0530 Subject: [PATCH] feat: cache bust before applying db migrations --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 1c342fa..7de8b8d 100644 --- a/Makefile +++ b/Makefile @@ -44,6 +44,7 @@ lint: ## Lint codebase cargo clippy --workspace --tests --all-features migrate: ## run migrations + $(call cache_bust) unset DATABASE_URL && cargo build cargo run -- migrate