@medusajs/link-modules 2.11.4-snapshot-20251106122834 → 2.11.4-snapshot-20251107094001
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/migration/index.js +1 -1
- package/package.json +4 -4
package/dist/migration/index.js
CHANGED
|
@@ -136,7 +136,7 @@ class MigrationsExecutionPlanner {
|
|
|
136
136
|
.getDriver()
|
|
137
137
|
.getConnection()
|
|
138
138
|
.execute(`
|
|
139
|
-
INSERT INTO "${this.tableName}" (table_name, link_descriptor) VALUES (?, ?);
|
|
139
|
+
INSERT INTO "${this.tableName}" (table_name, link_descriptor) VALUES (?, ?) ON CONFLICT (table_name) DO NOTHING;
|
|
140
140
|
${sql}
|
|
141
141
|
`, [tableName, linkDescriptor]);
|
|
142
142
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medusajs/link-modules",
|
|
3
|
-
"version": "2.11.4-snapshot-
|
|
3
|
+
"version": "2.11.4-snapshot-20251107094001",
|
|
4
4
|
"description": "Medusa Default Link Modules Package and Definitions",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
"test:integration": "../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.ts\""
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@medusajs/framework": "2.11.4-snapshot-
|
|
37
|
-
"@medusajs/test-utils": "2.11.4-snapshot-
|
|
36
|
+
"@medusajs/framework": "2.11.4-snapshot-20251107094001",
|
|
37
|
+
"@medusajs/test-utils": "2.11.4-snapshot-20251107094001"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"@medusajs/framework": "2.11.4-snapshot-
|
|
40
|
+
"@medusajs/framework": "2.11.4-snapshot-20251107094001"
|
|
41
41
|
}
|
|
42
42
|
}
|