@mikro-orm/migrations 6.6.8 → 6.6.9-dev.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/Migrator.js +5 -1
  2. package/package.json +3 -3
package/Migrator.js CHANGED
@@ -353,7 +353,11 @@ class Migrator {
353
353
  else {
354
354
  result = await this.driver.getConnection().transactional(trx => this.runInTransaction(trx, method, options));
355
355
  }
356
- if (result.length > 0 && this.options.snapshot) {
356
+ // Only update the snapshot after `down` — after reverting, the DB state
357
+ // diverges from what was stored during `create`, so we need to refresh it.
358
+ // For `up`, the snapshot is already up to date (written during `create`),
359
+ // and writing it would break read-only production environments (GH #7232).
360
+ if (method === 'down' && result.length > 0 && this.options.snapshot) {
357
361
  const schema = await knex_1.DatabaseSchema.create(this.em.getConnection(), this.em.getPlatform(), this.config);
358
362
  await this.storeCurrentSchema(schema);
359
363
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikro-orm/migrations",
3
- "version": "6.6.8",
3
+ "version": "6.6.9-dev.0",
4
4
  "description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.",
5
5
  "main": "index.js",
6
6
  "module": "index.mjs",
@@ -58,7 +58,7 @@
58
58
  "access": "public"
59
59
  },
60
60
  "dependencies": {
61
- "@mikro-orm/knex": "6.6.8",
61
+ "@mikro-orm/knex": "6.6.9-dev.0",
62
62
  "fs-extra": "11.3.3",
63
63
  "umzug": "3.8.2"
64
64
  },
@@ -66,6 +66,6 @@
66
66
  "@mikro-orm/core": "^6.6.8"
67
67
  },
68
68
  "peerDependencies": {
69
- "@mikro-orm/core": "^6.0.0"
69
+ "@mikro-orm/core": "6.6.9-dev.0"
70
70
  }
71
71
  }