Skip to content

Commit 4d54383

Browse files
committed
add missing folder
1 parent 9b3d0bf commit 4d54383

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

deps.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{:paths ["src" "target"]
1+
{:paths ["src" "target" "resources"]
22
:test-paths ["test"]
33

44
:deps {org.clojure/clojure {:mvn/version "1.12.1"}

src/intemporal/store/jdbc.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
(.startsWith jdbc-url "jdbc:mysql") :mysql
2828
:else (throw (ex-info "Unknown jdbc url %s; only postgres and mysql/mariadb supported" {:jdbc-url jdbc-url})))
2929
cfg {:store :database
30-
:migration-dir (str "migrations/" kind)
30+
:migration-dir (str "migrations/" (name kind))
3131
:db {:jdbcUrl jdbc-url}}]
3232
(migratus/migrate cfg)))
3333

0 commit comments

Comments
 (0)