mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-05-09 11:01:45 +00:00
9 lines
144 B
Bash
9 lines
144 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
echo "Rodando migrations do banco de dados..."
|
|
./node_modules/.bin/drizzle-kit push
|
|
echo "Migrations concluídas."
|
|
|
|
exec "$@"
|