Skip to content
Snippets Groups Projects
Unverified Commit a7172ff4 authored by Cam Saül's avatar Cam Saül
Browse files

Remove migrate down command :arrow_down:

parent 7e1447c6
No related branches found
No related tags found
No related merge requests found
......@@ -196,7 +196,6 @@
* `:up` - Migrate up
* `:force` - Force migrate up, ignoring locks and any DDL statements that fail.
* `:down` - Rollback *all* migrations
* `:down-one` - Rollback a single migration
* `:print` - Just print the SQL for running the migrations, don't actually run them.
* `:release-locks` - Manually release migration locks left by an earlier failed migration.
......@@ -217,7 +216,6 @@
(case direction
:up (migrate-up-if-needed conn liquibase)
:force (force-migrate-up-if-needed conn liquibase)
:down (.rollback liquibase 10000 "")
:down-one (.rollback liquibase 1 "")
:print (println (migrations-sql liquibase))
:release-locks (.forceReleaseLocks liquibase)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment