mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 18:42:49 +00:00
14 lines
648 B
Bash
14 lines
648 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
echo "🔍 Checking for failed migrations..."
|
|
|
|
# Mark legacy migrations as applied (these are from an old schema that doesn't match current DB)
|
|
# These migrations were designed for a different schema version and should be skipped
|
|
npx prisma migrate resolve --applied "20240100000000_fix_failed_migration_state" || true
|
|
npx prisma migrate resolve --applied "20240101000000_individual_tickets_no_timezone" || true
|
|
npx prisma migrate resolve --applied "20240102000000_drop_ticket_column_defaults" || true
|
|
npx prisma migrate resolve --applied "20241201000000_remove_station_timezone" || true
|
|
|
|
echo "✅ Migration resolution complete"
|