migratus.core

(source)
Public Variable Short Description
all-migrations (clj)
completed-list (clj) List completed migrations.
completed-migrations (clj)
create (clj) Create a new migration with the current date.
destroy (clj) Destroy migration.
down (clj) Bring down the migrations identified by ids.
gather-migrations (clj) Returns a list of all migrations from migration dir and db with enriched data: - date and time when was applied; - description;.
init (clj) Initialize the data store.
migrate (clj) Bring up any migrations that are not completed.
migrate-until-just-before (clj) Run all migrations preceding migration-id.
migration-name (clj)
pending-list (clj) List pending migrations.
require-plugin (clj)
reset (clj) Reset the database by down-ing all migrations successfully applied, then up-ing all migratinos.
rollback (clj) Rollback the last migration that was successfully applied.
rollback-until-just-after (clj) Migrate down all migrations after migration-id.
run (clj)
select-migrations (clj) List pairs of id and name for migrations selected by the selection-fn.
uncompleted-migrations (clj) Returns a list of uncompleted migrations.
up (clj) Bring up the migrations identified by ids.
with-store (clj) bindings => name init Evaluates body in a try expression with name bound to the value of the init, and (proto/connect name) called before body, and a finally clause that calls (proto/disconnect name).