history This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ==== Solve The migration MY_MIGRATION was modified after it was applied error ==== Update migration sha in DB table: <code> shasum -a 256 prisma/migrations/xxx/migration.sql </code> And then replace migration sha value in prisma_migrations table ==== Rollback failed migrations ==== <code> prisma migrate resolve --rolled-back "20250411120407_created_at_not_null" </code> ==== Add a migration in migrations table without running the migration ===== <code> prisma migrate resolve --applied "[migration_name]" </code>