@mikro-orm/migrations 7.0.0-dev.75 → 7.0.0-dev.77

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.
@@ -11,7 +11,7 @@ export class JSMigrationGenerator extends MigrationGenerator {
11
11
  ret += ` async up() {\n`;
12
12
  diff.up.forEach(sql => ret += this.createStatement(sql, 4));
13
13
  ret += ` }\n\n`;
14
- /* v8 ignore next 5 */
14
+ /* v8 ignore next */
15
15
  if (diff.down.length > 0) {
16
16
  ret += ` async down() {\n`;
17
17
  diff.down.forEach(sql => ret += this.createStatement(sql, 4));
package/Migrator.js CHANGED
@@ -182,7 +182,7 @@ export class Migrator {
182
182
  async ensureDatabase() {
183
183
  this.ensureMigrationsDirExists();
184
184
  const created = await this.schemaGenerator.ensureDatabase();
185
- /* v8 ignore next 3 */
185
+ /* v8 ignore next */
186
186
  if (created) {
187
187
  this.createUmzug();
188
188
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mikro-orm/migrations",
3
3
  "type": "module",
4
- "version": "7.0.0-dev.75",
4
+ "version": "7.0.0-dev.77",
5
5
  "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.",
6
6
  "exports": {
7
7
  "./package.json": "./package.json",
@@ -50,13 +50,13 @@
50
50
  "access": "public"
51
51
  },
52
52
  "dependencies": {
53
- "@mikro-orm/knex": "7.0.0-dev.75",
53
+ "@mikro-orm/knex": "7.0.0-dev.77",
54
54
  "umzug": "3.8.2"
55
55
  },
56
56
  "devDependencies": {
57
57
  "@mikro-orm/core": "^6.6.1"
58
58
  },
59
59
  "peerDependencies": {
60
- "@mikro-orm/core": "7.0.0-dev.75"
60
+ "@mikro-orm/core": "7.0.0-dev.77"
61
61
  }
62
62
  }