Files
fizzy/bin/migrate-primary-db
T
2025-10-23 14:12:01 +02:00

9 lines
241 B
Bash
Executable File

#!/usr/bin/env bash
if bundle exec beamer is-primary --directory ./storage; then
echo "Running on primary node, preparing the database..."
bin/rails db:prepare
else
echo "This is not a primary node, skipping database preparation."
fi