mv migrations -> schema

This commit is contained in:
Orion Kindel 2023-06-08 20:48:47 -05:00
parent db9cad3520
commit d9b165fb19
Signed by untrusted user who does not match committer: orion
GPG Key ID: 6D4165AE4C928719
4 changed files with 2 additions and 2 deletions

View File

@ -33,9 +33,9 @@ psql \
--command="drop schema public cascade; create schema public;" \
1>/dev/null
ls ./migrations/ | xargs -I{} \
ls ./schema/ | xargs -I{} \
psql \
--quiet \
$url \
--file=./migrations/{} \
--file=./schema/{} \
1>/dev/null