@mikro-orm/migrations 7.0.4-dev.9 → 7.0.4
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.
- package/JSMigrationGenerator.d.ts +10 -7
- package/JSMigrationGenerator.js +20 -20
- package/Migration.d.ts +29 -23
- package/Migration.js +46 -46
- package/MigrationGenerator.d.ts +35 -23
- package/MigrationGenerator.js +33 -33
- package/MigrationRunner.d.ts +9 -9
- package/MigrationRunner.js +43 -41
- package/MigrationStorage.d.ts +23 -27
- package/MigrationStorage.js +113 -108
- package/Migrator.d.ts +42 -32
- package/Migrator.js +237 -238
- package/README.md +1 -1
- package/TSMigrationGenerator.d.ts +10 -7
- package/TSMigrationGenerator.js +16 -16
- package/package.json +4 -4
package/Migrator.js
CHANGED
|
@@ -1,265 +1,264 @@
|
|
|
1
|
-
import { t, Type, UnknownType
|
|
1
|
+
import { t, Type, UnknownType } from '@mikro-orm/core';
|
|
2
2
|
import { AbstractMigrator } from '@mikro-orm/core/migrations';
|
|
3
|
-
import { DatabaseSchema, DatabaseTable
|
|
3
|
+
import { DatabaseSchema, DatabaseTable } from '@mikro-orm/sql';
|
|
4
4
|
import { MigrationRunner } from './MigrationRunner.js';
|
|
5
5
|
import { MigrationStorage } from './MigrationStorage.js';
|
|
6
6
|
import { TSMigrationGenerator } from './TSMigrationGenerator.js';
|
|
7
7
|
import { JSMigrationGenerator } from './JSMigrationGenerator.js';
|
|
8
8
|
/** Manages SQL database migrations: creation, execution, and rollback of schema changes. */
|
|
9
9
|
export class Migrator extends AbstractMigrator {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
10
|
+
#schemaGenerator;
|
|
11
|
+
#snapshotPath;
|
|
12
|
+
constructor(em) {
|
|
13
|
+
super(em);
|
|
14
|
+
this.#schemaGenerator = this.config.getExtension('@mikro-orm/schema-generator');
|
|
15
|
+
}
|
|
16
|
+
static register(orm) {
|
|
17
|
+
orm.config.registerExtension('@mikro-orm/migrator', () => new Migrator(orm.em));
|
|
18
|
+
}
|
|
19
|
+
createRunner() {
|
|
20
|
+
return new MigrationRunner(this.driver, this.options, this.config);
|
|
21
|
+
}
|
|
22
|
+
createStorage() {
|
|
23
|
+
return new MigrationStorage(this.driver, this.options);
|
|
24
|
+
}
|
|
25
|
+
getDefaultGenerator() {
|
|
26
|
+
if (this.options.emit === 'js' || this.options.emit === 'cjs') {
|
|
27
|
+
return new JSMigrationGenerator(this.driver, this.config.getNamingStrategy(), this.options);
|
|
15
28
|
}
|
|
16
|
-
|
|
17
|
-
|
|
29
|
+
return new TSMigrationGenerator(this.driver, this.config.getNamingStrategy(), this.options);
|
|
30
|
+
}
|
|
31
|
+
async getSnapshotPath() {
|
|
32
|
+
if (!this.#snapshotPath) {
|
|
33
|
+
const { fs } = await import('@mikro-orm/core/fs-utils');
|
|
34
|
+
// for snapshots, we always want to use the path based on `emit` option, regardless of whether we run in TS context
|
|
35
|
+
/* v8 ignore next */
|
|
36
|
+
const snapshotPath = this.options.emit === 'ts' && this.options.pathTs ? this.options.pathTs : this.options.path;
|
|
37
|
+
const absoluteSnapshotPath = fs.absolutePath(snapshotPath, this.config.get('baseDir'));
|
|
38
|
+
const dbName = this.config.get('dbName').replace(/\\/g, '/').split('/').pop().replace(/:/g, '');
|
|
39
|
+
const snapshotName = this.options.snapshotName ?? `.snapshot-${dbName}`;
|
|
40
|
+
this.#snapshotPath = fs.normalizePath(absoluteSnapshotPath, `${snapshotName}.json`);
|
|
18
41
|
}
|
|
19
|
-
|
|
20
|
-
|
|
42
|
+
return this.#snapshotPath;
|
|
43
|
+
}
|
|
44
|
+
async init() {
|
|
45
|
+
if (this.initialized) {
|
|
46
|
+
return;
|
|
21
47
|
}
|
|
22
|
-
|
|
23
|
-
|
|
48
|
+
await super.init();
|
|
49
|
+
const created = await this.#schemaGenerator.ensureDatabase();
|
|
50
|
+
/* v8 ignore next */
|
|
51
|
+
if (created) {
|
|
52
|
+
this.initServices();
|
|
24
53
|
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
54
|
+
await this.storage.ensureTable();
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* @inheritDoc
|
|
58
|
+
*/
|
|
59
|
+
async create(path, blank = false, initial = false, name) {
|
|
60
|
+
await this.init();
|
|
61
|
+
if (initial) {
|
|
62
|
+
return this.createInitial(path, name, blank);
|
|
30
63
|
}
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
// for snapshots, we always want to use the path based on `emit` option, regardless of whether we run in TS context
|
|
35
|
-
/* v8 ignore next */
|
|
36
|
-
const snapshotPath = this.options.emit === 'ts' && this.options.pathTs ? this.options.pathTs : this.options.path;
|
|
37
|
-
const absoluteSnapshotPath = fs.absolutePath(snapshotPath, this.config.get('baseDir'));
|
|
38
|
-
const dbName = this.config.get('dbName').replace(/\\/g, '/').split('/').pop().replace(/:/g, '');
|
|
39
|
-
const snapshotName = this.options.snapshotName ?? `.snapshot-${dbName}`;
|
|
40
|
-
this.#snapshotPath = fs.normalizePath(absoluteSnapshotPath, `${snapshotName}.json`);
|
|
41
|
-
}
|
|
42
|
-
return this.#snapshotPath;
|
|
64
|
+
const diff = await this.getSchemaDiff(blank, initial);
|
|
65
|
+
if (diff.up.length === 0) {
|
|
66
|
+
return { fileName: '', code: '', diff };
|
|
43
67
|
}
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
68
|
+
const migration = await this.generator.generate(diff, path, name);
|
|
69
|
+
await this.storeCurrentSchema();
|
|
70
|
+
return {
|
|
71
|
+
fileName: migration[1],
|
|
72
|
+
code: migration[0],
|
|
73
|
+
diff,
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
async checkSchema() {
|
|
77
|
+
await this.init();
|
|
78
|
+
const diff = await this.getSchemaDiff(false, false);
|
|
79
|
+
return diff.up.length > 0;
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* @inheritDoc
|
|
83
|
+
*/
|
|
84
|
+
async createInitial(path, name, blank = false) {
|
|
85
|
+
await this.init();
|
|
86
|
+
const schemaExists = await this.validateInitialMigration(blank);
|
|
87
|
+
const diff = await this.getSchemaDiff(blank, true);
|
|
88
|
+
const migration = await this.generator.generate(diff, path, name);
|
|
89
|
+
await this.storeCurrentSchema();
|
|
90
|
+
if (schemaExists && !blank) {
|
|
91
|
+
await this.storage.logMigration({ name: migration[1] });
|
|
55
92
|
}
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
fileName: migration[1],
|
|
72
|
-
code: migration[0],
|
|
73
|
-
diff,
|
|
74
|
-
};
|
|
93
|
+
return {
|
|
94
|
+
fileName: migration[1],
|
|
95
|
+
code: migration[0],
|
|
96
|
+
diff,
|
|
97
|
+
};
|
|
98
|
+
}
|
|
99
|
+
async runMigrations(method, options) {
|
|
100
|
+
const result = await super.runMigrations(method, options);
|
|
101
|
+
if (result.length > 0 && this.options.snapshot) {
|
|
102
|
+
const schema = await DatabaseSchema.create(this.em.getConnection(), this.em.getPlatform(), this.config);
|
|
103
|
+
try {
|
|
104
|
+
await this.storeCurrentSchema(schema);
|
|
105
|
+
} catch {
|
|
106
|
+
// Silently ignore for read-only filesystems (production).
|
|
107
|
+
}
|
|
75
108
|
}
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
109
|
+
return result;
|
|
110
|
+
}
|
|
111
|
+
getStorage() {
|
|
112
|
+
return this.storage;
|
|
113
|
+
}
|
|
114
|
+
/**
|
|
115
|
+
* Initial migration can be created only if:
|
|
116
|
+
* 1. no previous migrations were generated or executed
|
|
117
|
+
* 2. existing schema do not contain any of the tables defined by metadata
|
|
118
|
+
*
|
|
119
|
+
* If existing schema contains all of the tables already, we return true, based on that we mark the migration as already executed.
|
|
120
|
+
* If only some of the tables are present, exception is thrown.
|
|
121
|
+
*/
|
|
122
|
+
async validateInitialMigration(blank) {
|
|
123
|
+
const executed = await this.getExecuted();
|
|
124
|
+
const pending = await this.getPending();
|
|
125
|
+
if (executed.length > 0 || pending.length > 0) {
|
|
126
|
+
throw new Error('Initial migration cannot be created, as some migrations already exist');
|
|
80
127
|
}
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
const
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
128
|
+
const schema = await DatabaseSchema.create(this.em.getConnection(), this.em.getPlatform(), this.config);
|
|
129
|
+
const exists = new Set();
|
|
130
|
+
const expected = new Set();
|
|
131
|
+
[...this.em.getMetadata().getAll().values()]
|
|
132
|
+
.filter(meta => meta.tableName && !meta.embeddable && !meta.virtual)
|
|
133
|
+
.forEach(meta => {
|
|
134
|
+
const schema = meta.schema ?? this.config.get('schema', this.em.getPlatform().getDefaultSchemaName());
|
|
135
|
+
expected.add(schema ? `${schema}.${meta.collection}` : meta.collection);
|
|
136
|
+
});
|
|
137
|
+
schema.getTables().forEach(table => {
|
|
138
|
+
const schema = table.schema ?? this.em.getPlatform().getDefaultSchemaName();
|
|
139
|
+
const tableName = schema ? `${schema}.${table.name}` : table.name;
|
|
140
|
+
if (expected.has(tableName)) {
|
|
141
|
+
exists.add(table.schema ? `${table.schema}.${table.name}` : table.name);
|
|
142
|
+
}
|
|
143
|
+
});
|
|
144
|
+
if (expected.size === 0 && !blank) {
|
|
145
|
+
throw new Error('No entities found');
|
|
98
146
|
}
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
try {
|
|
104
|
-
await this.storeCurrentSchema(schema);
|
|
105
|
-
}
|
|
106
|
-
catch {
|
|
107
|
-
// Silently ignore for read-only filesystems (production).
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
return result;
|
|
147
|
+
if (exists.size > 0 && expected.size !== exists.size) {
|
|
148
|
+
throw new Error(
|
|
149
|
+
`Some tables already exist in your schema, remove them first to create the initial migration: ${[...exists].join(', ')}`,
|
|
150
|
+
);
|
|
111
151
|
}
|
|
112
|
-
|
|
113
|
-
|
|
152
|
+
return expected.size === exists.size;
|
|
153
|
+
}
|
|
154
|
+
async getSchemaFromSnapshot() {
|
|
155
|
+
if (!this.options.snapshot) {
|
|
156
|
+
return undefined;
|
|
114
157
|
}
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
*
|
|
120
|
-
* If existing schema contains all of the tables already, we return true, based on that we mark the migration as already executed.
|
|
121
|
-
* If only some of the tables are present, exception is thrown.
|
|
122
|
-
*/
|
|
123
|
-
async validateInitialMigration(blank) {
|
|
124
|
-
const executed = await this.getExecuted();
|
|
125
|
-
const pending = await this.getPending();
|
|
126
|
-
if (executed.length > 0 || pending.length > 0) {
|
|
127
|
-
throw new Error('Initial migration cannot be created, as some migrations already exist');
|
|
128
|
-
}
|
|
129
|
-
const schema = await DatabaseSchema.create(this.em.getConnection(), this.em.getPlatform(), this.config);
|
|
130
|
-
const exists = new Set();
|
|
131
|
-
const expected = new Set();
|
|
132
|
-
[...this.em.getMetadata().getAll().values()]
|
|
133
|
-
.filter(meta => meta.tableName && !meta.embeddable && !meta.virtual)
|
|
134
|
-
.forEach(meta => {
|
|
135
|
-
const schema = meta.schema ?? this.config.get('schema', this.em.getPlatform().getDefaultSchemaName());
|
|
136
|
-
expected.add(schema ? `${schema}.${meta.collection}` : meta.collection);
|
|
137
|
-
});
|
|
138
|
-
schema.getTables().forEach(table => {
|
|
139
|
-
const schema = table.schema ?? this.em.getPlatform().getDefaultSchemaName();
|
|
140
|
-
const tableName = schema ? `${schema}.${table.name}` : table.name;
|
|
141
|
-
if (expected.has(tableName)) {
|
|
142
|
-
exists.add(table.schema ? `${table.schema}.${table.name}` : table.name);
|
|
143
|
-
}
|
|
144
|
-
});
|
|
145
|
-
if (expected.size === 0 && !blank) {
|
|
146
|
-
throw new Error('No entities found');
|
|
147
|
-
}
|
|
148
|
-
if (exists.size > 0 && expected.size !== exists.size) {
|
|
149
|
-
throw new Error(`Some tables already exist in your schema, remove them first to create the initial migration: ${[...exists].join(', ')}`);
|
|
150
|
-
}
|
|
151
|
-
return expected.size === exists.size;
|
|
158
|
+
const snapshotPath = await this.getSnapshotPath();
|
|
159
|
+
const { fs } = await import('@mikro-orm/core/fs-utils');
|
|
160
|
+
if (!fs.pathExists(snapshotPath)) {
|
|
161
|
+
return undefined;
|
|
152
162
|
}
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
column.mappedType = Type.getType(t[cols[col].mappedType] ?? UnknownType);
|
|
183
|
-
table.addColumn(column);
|
|
184
|
-
});
|
|
185
|
-
return table;
|
|
186
|
-
});
|
|
187
|
-
schema.setTables(tableInstances);
|
|
188
|
-
schema.setNamespaces(new Set(namespaces));
|
|
189
|
-
if (rest.nativeEnums) {
|
|
190
|
-
schema.setNativeEnums(rest.nativeEnums);
|
|
191
|
-
}
|
|
192
|
-
if (rest.views) {
|
|
193
|
-
schema.setViews(rest.views);
|
|
194
|
-
}
|
|
195
|
-
return schema;
|
|
163
|
+
const data = fs.readJSONSync(snapshotPath);
|
|
164
|
+
const schema = new DatabaseSchema(this.driver.getPlatform(), this.config.get('schema'));
|
|
165
|
+
const { tables, namespaces, ...rest } = data;
|
|
166
|
+
const tableInstances = tables.map(tbl => {
|
|
167
|
+
const table = new DatabaseTable(this.driver.getPlatform(), tbl.name, tbl.schema);
|
|
168
|
+
table.nativeEnums = tbl.nativeEnums ?? {};
|
|
169
|
+
table.comment = tbl.comment;
|
|
170
|
+
if (tbl.indexes) {
|
|
171
|
+
table.setIndexes(tbl.indexes);
|
|
172
|
+
}
|
|
173
|
+
if (tbl.checks) {
|
|
174
|
+
table.setChecks(tbl.checks);
|
|
175
|
+
}
|
|
176
|
+
if (tbl.foreignKeys) {
|
|
177
|
+
table.setForeignKeys(tbl.foreignKeys);
|
|
178
|
+
}
|
|
179
|
+
const cols = tbl.columns;
|
|
180
|
+
Object.keys(cols).forEach(col => {
|
|
181
|
+
const column = { ...cols[col] };
|
|
182
|
+
/* v8 ignore next */
|
|
183
|
+
column.mappedType = Type.getType(t[cols[col].mappedType] ?? UnknownType);
|
|
184
|
+
table.addColumn(column);
|
|
185
|
+
});
|
|
186
|
+
return table;
|
|
187
|
+
});
|
|
188
|
+
schema.setTables(tableInstances);
|
|
189
|
+
schema.setNamespaces(new Set(namespaces));
|
|
190
|
+
if (rest.nativeEnums) {
|
|
191
|
+
schema.setNativeEnums(rest.nativeEnums);
|
|
196
192
|
}
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
193
|
+
if (rest.views) {
|
|
194
|
+
schema.setViews(rest.views);
|
|
195
|
+
}
|
|
196
|
+
return schema;
|
|
197
|
+
}
|
|
198
|
+
async storeCurrentSchema(schema) {
|
|
199
|
+
if (!this.options.snapshot) {
|
|
200
|
+
return;
|
|
205
201
|
}
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
const trimmed = buf.trim();
|
|
227
|
-
if (trimmed) {
|
|
228
|
-
result.push(trimmed.endsWith(';') ? trimmed : trimmed + ';');
|
|
229
|
-
}
|
|
230
|
-
buf = '';
|
|
231
|
-
}
|
|
232
|
-
return result;
|
|
233
|
-
};
|
|
234
|
-
if (blank) {
|
|
235
|
-
up.push('select 1');
|
|
236
|
-
down.push('select 1');
|
|
202
|
+
const snapshotPath = await this.getSnapshotPath();
|
|
203
|
+
schema ??= this.#schemaGenerator.getTargetSchema();
|
|
204
|
+
const { fs } = await import('@mikro-orm/core/fs-utils');
|
|
205
|
+
await fs.writeFile(snapshotPath, JSON.stringify(schema, null, 2));
|
|
206
|
+
}
|
|
207
|
+
async getSchemaDiff(blank, initial) {
|
|
208
|
+
const up = [];
|
|
209
|
+
const down = [];
|
|
210
|
+
// Split SQL by statement boundaries (semicolons followed by newline) rather than
|
|
211
|
+
// just newlines, to preserve multiline statements like view definitions.
|
|
212
|
+
// Blank lines (from double newlines) are preserved as empty strings for grouping.
|
|
213
|
+
// Splits inside single-quoted string literals are re-merged (GH #7185).
|
|
214
|
+
const splitStatements = sql => {
|
|
215
|
+
const result = [];
|
|
216
|
+
let buf = '';
|
|
217
|
+
for (const chunk of sql.split(/;\n/)) {
|
|
218
|
+
buf += (buf ? ';\n' : '') + chunk;
|
|
219
|
+
// odd number of single quotes means we're inside a string literal
|
|
220
|
+
if (buf.split(`'`).length % 2 === 0) {
|
|
221
|
+
continue;
|
|
237
222
|
}
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
223
|
+
// A chunk starting with \n indicates there was a blank line (grouping separator)
|
|
224
|
+
if (buf.startsWith('\n')) {
|
|
225
|
+
result.push('');
|
|
241
226
|
}
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
safe: this.options.safe,
|
|
246
|
-
dropTables: this.options.dropTables,
|
|
247
|
-
fromSchema: await this.getSchemaFromSnapshot(),
|
|
248
|
-
});
|
|
249
|
-
up.push(...splitStatements(diff.up));
|
|
250
|
-
down.push(...splitStatements(diff.down));
|
|
227
|
+
const trimmed = buf.trim();
|
|
228
|
+
if (trimmed) {
|
|
229
|
+
result.push(trimmed.endsWith(';') ? trimmed : trimmed + ';');
|
|
251
230
|
}
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
231
|
+
buf = '';
|
|
232
|
+
}
|
|
233
|
+
return result;
|
|
234
|
+
};
|
|
235
|
+
if (blank) {
|
|
236
|
+
up.push('select 1');
|
|
237
|
+
down.push('select 1');
|
|
238
|
+
} else if (initial) {
|
|
239
|
+
const dump = await this.#schemaGenerator.getCreateSchemaSQL({ wrap: false });
|
|
240
|
+
up.push(...splitStatements(dump));
|
|
241
|
+
} else {
|
|
242
|
+
const diff = await this.#schemaGenerator.getUpdateSchemaMigrationSQL({
|
|
243
|
+
wrap: false,
|
|
244
|
+
safe: this.options.safe,
|
|
245
|
+
dropTables: this.options.dropTables,
|
|
246
|
+
fromSchema: await this.getSchemaFromSnapshot(),
|
|
247
|
+
});
|
|
248
|
+
up.push(...splitStatements(diff.up));
|
|
249
|
+
down.push(...splitStatements(diff.down));
|
|
264
250
|
}
|
|
251
|
+
const cleanUp = diff => {
|
|
252
|
+
for (let i = diff.length - 1; i >= 0; i--) {
|
|
253
|
+
if (diff[i]) {
|
|
254
|
+
break;
|
|
255
|
+
}
|
|
256
|
+
/* v8 ignore next */
|
|
257
|
+
diff.splice(i, 1);
|
|
258
|
+
}
|
|
259
|
+
};
|
|
260
|
+
cleanUp(up);
|
|
261
|
+
cleanUp(down);
|
|
262
|
+
return { up, down };
|
|
263
|
+
}
|
|
265
264
|
}
|
package/README.md
CHANGED
|
@@ -133,7 +133,7 @@ const author = await em.findOneOrFail(Author, 1, {
|
|
|
133
133
|
populate: ['books'],
|
|
134
134
|
});
|
|
135
135
|
author.name = 'Jon Snow II';
|
|
136
|
-
author.books.getItems().forEach(book => book.title += ' (2nd ed.)');
|
|
136
|
+
author.books.getItems().forEach(book => (book.title += ' (2nd ed.)'));
|
|
137
137
|
author.books.add(orm.em.create(Book, { title: 'New Book', author }));
|
|
138
138
|
|
|
139
139
|
// Flush computes change sets and executes them in a single transaction
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
import { MigrationGenerator } from './MigrationGenerator.js';
|
|
2
2
|
/** Generates migration files in TypeScript format. */
|
|
3
3
|
export declare class TSMigrationGenerator extends MigrationGenerator {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
4
|
+
/**
|
|
5
|
+
* @inheritDoc
|
|
6
|
+
*/
|
|
7
|
+
generateMigrationFile(
|
|
8
|
+
className: string,
|
|
9
|
+
diff: {
|
|
10
|
+
up: string[];
|
|
11
|
+
down: string[];
|
|
12
|
+
},
|
|
13
|
+
): string;
|
|
11
14
|
}
|
package/TSMigrationGenerator.js
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
import { MigrationGenerator } from './MigrationGenerator.js';
|
|
2
2
|
/** Generates migration files in TypeScript format. */
|
|
3
3
|
export class TSMigrationGenerator extends MigrationGenerator {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
18
|
-
ret += `}\n`;
|
|
19
|
-
return ret;
|
|
4
|
+
/**
|
|
5
|
+
* @inheritDoc
|
|
6
|
+
*/
|
|
7
|
+
generateMigrationFile(className, diff) {
|
|
8
|
+
let ret = `import { Migration } from '@mikro-orm/migrations';\n\n`;
|
|
9
|
+
ret += `export class ${className} extends Migration {\n\n`;
|
|
10
|
+
ret += ` override up(): void | Promise<void> {\n`;
|
|
11
|
+
diff.up.forEach(sql => (ret += this.createStatement(sql, 4)));
|
|
12
|
+
ret += ` }\n\n`;
|
|
13
|
+
if (diff.down.length > 0) {
|
|
14
|
+
ret += ` override down(): void | Promise<void> {\n`;
|
|
15
|
+
diff.down.forEach(sql => (ret += this.createStatement(sql, 4)));
|
|
16
|
+
ret += ` }\n\n`;
|
|
20
17
|
}
|
|
18
|
+
ret += `}\n`;
|
|
19
|
+
return ret;
|
|
20
|
+
}
|
|
21
21
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikro-orm/migrations",
|
|
3
|
-
"version": "7.0.4
|
|
3
|
+
"version": "7.0.4",
|
|
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
|
"keywords": [
|
|
6
6
|
"data-mapper",
|
|
@@ -47,13 +47,13 @@
|
|
|
47
47
|
"copy": "node ../../scripts/copy.mjs"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@mikro-orm/sql": "7.0.4
|
|
50
|
+
"@mikro-orm/sql": "7.0.4"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@mikro-orm/core": "^7.0.
|
|
53
|
+
"@mikro-orm/core": "^7.0.4"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
|
-
"@mikro-orm/core": "7.0.4
|
|
56
|
+
"@mikro-orm/core": "7.0.4"
|
|
57
57
|
},
|
|
58
58
|
"engines": {
|
|
59
59
|
"node": ">= 22.17.0"
|