#!/bin/sh set -e echo "🔍 Checking for failed migrations..." # Mark the specific failed migration as applied npx prisma migrate resolve --applied "20240101000000_individual_tickets_no_timezone" || true echo "✅ Migration resolution complete"