@ronin/compiler 0.14.6-leo-ron-1099-1-experimental-336 → 0.14.6-leo-ron-1099-1-experimental-337
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/dist/index.js +1 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -570,11 +570,7 @@ var handleTo = (models, model, statementParams, queryType, dependencyStatements,
|
|
570
570
|
[],
|
571
571
|
{ returning: false }
|
572
572
|
).main;
|
573
|
-
|
574
|
-
if (queryType === "add" && subQueryType === "add") {
|
575
|
-
details.after = true;
|
576
|
-
}
|
577
|
-
dependencyStatements.push(details);
|
573
|
+
dependencyStatements.push({ ...query, after: true });
|
578
574
|
};
|
579
575
|
if (Array.isArray(fieldValue)) {
|
580
576
|
if (queryType === "set") composeStatement("remove");
|
package/package.json
CHANGED