mirror of
https://github.com/valitydev/api-key-mgmt-v2.git
synced 2024-11-06 02:15:19 +00:00
cc42e72073
Co-authored-by: anatoliy.losev <losto@nix> |
||
---|---|---|
.github/workflows | ||
apps/akm | ||
config | ||
migrations | ||
psql-migration@c84b06fc7e | ||
.dockerignore | ||
.env | ||
.gitignore | ||
.gitmodules | ||
compose.yaml | ||
Dockerfile | ||
Dockerfile.dev | ||
elvis.config | ||
LICENSE | ||
Makefile | ||
README.md | ||
rebar.config | ||
rebar.lock | ||
renovate.json |
api-key-mgmt-v2
Migration
First compile migration script with
make wc-make_psql_migration
Then you can use script with
bin/psql_migration -e .env
Usage: psql_migration [-h] [-d [<dir>]] [-e [<env>]] <command>
-h, --help Print this help text
-d, --dir Migration folder [default: migrations]
-e, --env Environment file to search for DATABASE_URL [default: .env]
new <name> Create a new migration
list List migrations indicating which have been applied
run Run all migrations
revert Revert the last migration
reset Resets your database by dropping the database in your
DATABASE_URL and then runs `setup`
setup Creates the database specified in your DATABASE_URL, and
runs any existing migrations.