mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 18:42:49 +00:00
10 lines
248 B
Bash
10 lines
248 B
Bash
#!/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"
|