@mikro-orm/core 6.6.6-dev.3 → 6.6.6-dev.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.
|
@@ -977,7 +977,6 @@ class MetadataDiscovery {
|
|
|
977
977
|
if (meta.root === meta) {
|
|
978
978
|
return;
|
|
979
979
|
}
|
|
980
|
-
let i = 1;
|
|
981
980
|
Object.values(meta.properties).forEach(prop => {
|
|
982
981
|
const newProp = { ...prop };
|
|
983
982
|
const rootProp = meta.root.properties[prop.name];
|
|
@@ -985,11 +984,11 @@ class MetadataDiscovery {
|
|
|
985
984
|
const name = newProp.name;
|
|
986
985
|
this.initFieldName(newProp, newProp.object);
|
|
987
986
|
newProp.renamedFrom = name;
|
|
988
|
-
newProp.name = name
|
|
987
|
+
newProp.name = `${name}_${meta._id}`;
|
|
989
988
|
meta.root.addProperty(newProp);
|
|
989
|
+
this.initFieldName(prop, prop.object);
|
|
990
990
|
// Track all field variants and map discriminator values to field names
|
|
991
991
|
if (!rootProp.stiFieldNames) {
|
|
992
|
-
this.initFieldName(prop, prop.object);
|
|
993
992
|
this.initFieldName(rootProp, rootProp.object);
|
|
994
993
|
rootProp.stiFieldNames = [...rootProp.fieldNames];
|
|
995
994
|
rootProp.stiFieldNameMap = {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikro-orm/core",
|
|
3
|
-
"version": "6.6.6-dev.
|
|
3
|
+
"version": "6.6.6-dev.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
|
"main": "index.js",
|
|
6
6
|
"module": "index.mjs",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"esprima": "4.0.1",
|
|
65
65
|
"fs-extra": "11.3.3",
|
|
66
66
|
"globby": "11.1.0",
|
|
67
|
-
"mikro-orm": "6.6.6-dev.
|
|
67
|
+
"mikro-orm": "6.6.6-dev.4",
|
|
68
68
|
"reflect-metadata": "0.2.2"
|
|
69
69
|
}
|
|
70
70
|
}
|