@contember/engine-system-api 2.1.0-alpha.6 → 2.1.0-alpha.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contember/engine-system-api",
3
- "version": "2.1.0-alpha.6",
3
+ "version": "2.1.0-alpha.7",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/production/index.js",
6
6
  "typings": "./dist/types/index.d.ts",
@@ -23,21 +23,21 @@
23
23
  }
24
24
  },
25
25
  "dependencies": {
26
- "@contember/authorization": "2.1.0-alpha.6",
27
- "@contember/database": "2.1.0-alpha.6",
28
- "@contember/database-migrations": "2.1.0-alpha.6",
29
- "@contember/dic": "2.1.0-alpha.6",
30
- "@contember/graphql-utils": "2.1.0-alpha.6",
31
- "@contember/logger": "2.1.0-alpha.6",
32
- "@contember/queryable": "2.1.0-alpha.6",
33
- "@contember/schema": "2.1.0-alpha.6",
34
- "@contember/schema-migrations": "2.1.0-alpha.6",
35
- "@contember/schema-utils": "2.1.0-alpha.6",
26
+ "@contember/authorization": "2.1.0-alpha.7",
27
+ "@contember/database": "2.1.0-alpha.7",
28
+ "@contember/database-migrations": "2.1.0-alpha.7",
29
+ "@contember/dic": "2.1.0-alpha.7",
30
+ "@contember/graphql-utils": "2.1.0-alpha.7",
31
+ "@contember/logger": "2.1.0-alpha.7",
32
+ "@contember/queryable": "2.1.0-alpha.7",
33
+ "@contember/schema": "2.1.0-alpha.7",
34
+ "@contember/schema-migrations": "2.1.0-alpha.7",
35
+ "@contember/schema-utils": "2.1.0-alpha.7",
36
36
  "@graphql-tools/utils": "^10.5.5",
37
37
  "graphql-tag": "^2.12.6"
38
38
  },
39
39
  "devDependencies": {
40
- "@contember/schema-definition": "2.1.0-alpha.6",
40
+ "@contember/schema-definition": "2.1.0-alpha.7",
41
41
  "@types/node": "^20.17.22",
42
42
  "graphql": "^16.9.0",
43
43
  "pg": "^8.12.0"
@@ -14,6 +14,9 @@ export default async function (builder: MigrationBuilder, args: MigrationArgs<Sy
14
14
  if (entity.indexes.length === 0) {
15
15
  continue
16
16
  }
17
+ if (entity.view) {
18
+ continue
19
+ }
17
20
 
18
21
  for (const stage of stages) {
19
22
  const databaseMetadata = metadataByStage[stage.schema] ??= await args.databaseMetadataResolver(args.connection, stage.schema)