@mikro-orm/sql 7.1.7-dev.2 → 7.1.7-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.
|
@@ -1171,7 +1171,7 @@ export class PostgreSqlSchemaHelper extends SchemaHelper {
|
|
|
1171
1171
|
join pg_namespace nsp on nsp.oid = pgc.connamespace
|
|
1172
1172
|
join pg_class cls on pgc.conrelid = cls.oid
|
|
1173
1173
|
where pgc.contype = 'x' and (${excludeFilter})
|
|
1174
|
-
order by name`;
|
|
1174
|
+
order by schema_name, table_name, name, column_name`;
|
|
1175
1175
|
}
|
|
1176
1176
|
inferLengthFromColumnType(type) {
|
|
1177
1177
|
const match = /^(\w+(?:\s+\w+)*)\s*(?:\(\s*(\d+)\s*\)|$)/.exec(type);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikro-orm/sql",
|
|
3
|
-
"version": "7.1.7-dev.
|
|
3
|
+
"version": "7.1.7-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
|
"keywords": [
|
|
6
6
|
"data-mapper",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"@mikro-orm/core": "^7.1.6"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
|
-
"@mikro-orm/core": "7.1.7-dev.
|
|
56
|
+
"@mikro-orm/core": "7.1.7-dev.4"
|
|
57
57
|
},
|
|
58
58
|
"engines": {
|
|
59
59
|
"node": ">= 22.17.0"
|