We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b3d0bf commit 4d54383Copy full SHA for 4d54383
2 files changed
deps.edn
@@ -1,4 +1,4 @@
1
-{:paths ["src" "target"]
+{:paths ["src" "target" "resources"]
2
:test-paths ["test"]
3
4
:deps {org.clojure/clojure {:mvn/version "1.12.1"}
src/intemporal/store/jdbc.clj
@@ -27,7 +27,7 @@
27
(.startsWith jdbc-url "jdbc:mysql") :mysql
28
:else (throw (ex-info "Unknown jdbc url %s; only postgres and mysql/mariadb supported" {:jdbc-url jdbc-url})))
29
cfg {:store :database
30
- :migration-dir (str "migrations/" kind)
+ :migration-dir (str "migrations/" (name kind))
31
:db {:jdbcUrl jdbc-url}}]
32
(migratus/migrate cfg)))
33
0 commit comments