@pgpm/metaschema-schema 0.16.1 → 0.16.2

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/README.md CHANGED
@@ -113,7 +113,7 @@ Application-level metadata:
113
113
  - **apis**: API configurations
114
114
  - **api_extensions**: API extension relationships
115
115
  - **api_modules**: API module definitions
116
- - **api_schemata**: API schema configurations
116
+ - **api_schemas**: API schema configurations
117
117
  - **sites**: Site definitions
118
118
  - **apps**: Application definitions
119
119
  - **domains**: Domain configurations
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pgpm/metaschema-schema",
3
- "version": "0.16.1",
3
+ "version": "0.16.2",
4
4
  "description": "Database metadata utilities and introspection functions",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "contributors": [
@@ -37,5 +37,5 @@
37
37
  "bugs": {
38
38
  "url": "https://github.com/constructive-io/pgpm-modules/issues"
39
39
  },
40
- "gitHead": "03bf5866d961bfdfc02fe6dc1778ed8283373f43"
40
+ "gitHead": "0dc5221ad6b6e2ea1998d1f44d92f214bd6013e4"
41
41
  }
@@ -0,0 +1,7 @@
1
+ -- Revert schemas/services_public/tables/api_schemas/table from pg
2
+
3
+ BEGIN;
4
+
5
+ DROP TABLE services_public.api_schemas;
6
+
7
+ COMMIT;
@@ -0,0 +1,7 @@
1
+ -- Verify schemas/services_public/tables/api_schemas/table on pg
2
+
3
+ BEGIN;
4
+
5
+ SELECT verify_table ('services_public.api_schemas');
6
+
7
+ ROLLBACK;
@@ -1,7 +0,0 @@
1
- -- Revert schemas/services_public/tables/api_schemata/table from pg
2
-
3
- BEGIN;
4
-
5
- DROP TABLE services_public.api_schemata;
6
-
7
- COMMIT;
@@ -1,7 +0,0 @@
1
- -- Verify schemas/services_public/tables/api_schemata/table on pg
2
-
3
- BEGIN;
4
-
5
- SELECT verify_table ('services_public.api_schemata');
6
-
7
- ROLLBACK;