Skip to content

Instantly share code, notes, and snippets.

View runephilosof-abtion's full-sized avatar

Rune Philosof runephilosof-abtion

View GitHub Profile
@runephilosof-abtion
runephilosof-abtion / heroku-db-upgrade
Last active August 5, 2026 12:19
heroku-db-upgrade script
#!/bin/bash
set -e
APP=$1
DB=$2
if [ -z "$APP" ] || [ -z "$DB" ]; then
echo "Usage: $0 <app-name> <db-name>" >&2
exit 1
fi