From af67ae124b3a277b3ebdd35df0742c45f3bd546d Mon Sep 17 00:00:00 2001 From: Hanbin Lee Date: Mon, 6 Feb 2023 01:20:45 +0900 Subject: [PATCH] [#31] feat: add DB migration stage --- script/db_migration.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 script/db_migration.sh diff --git a/script/db_migration.sh b/script/db_migration.sh new file mode 100644 index 0000000..eddb78a --- /dev/null +++ b/script/db_migration.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +cd .. + +./gradlew :db:flywayInfo + +./gradlew :db:flywayValidate \ No newline at end of file