@pgpm/metaschema-modules 0.19.0 → 0.20.0

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.
Files changed (43) hide show
  1. package/deploy/schemas/metaschema_modules_public/tables/blueprint/table.sql +119 -0
  2. package/deploy/schemas/metaschema_modules_public/tables/blueprint_template/table.sql +137 -0
  3. package/deploy/schemas/metaschema_modules_public/tables/connected_accounts_module/table.sql +1 -6
  4. package/deploy/schemas/metaschema_modules_public/tables/crypto_addresses_module/table.sql +1 -6
  5. package/deploy/schemas/metaschema_modules_public/tables/crypto_auth_module/table.sql +1 -7
  6. package/deploy/schemas/metaschema_modules_public/tables/default_ids_module/table.sql +1 -2
  7. package/deploy/schemas/metaschema_modules_public/tables/denormalized_table_field/table.sql +1 -6
  8. package/deploy/schemas/metaschema_modules_public/tables/emails_module/table.sql +1 -6
  9. package/deploy/schemas/metaschema_modules_public/tables/encrypted_secrets_module/table.sql +1 -6
  10. package/deploy/schemas/metaschema_modules_public/tables/field_module/table.sql +1 -5
  11. package/deploy/schemas/metaschema_modules_public/tables/hierarchy_module/table.sql +1 -19
  12. package/deploy/schemas/metaschema_modules_public/tables/invites_module/table.sql +1 -8
  13. package/deploy/schemas/metaschema_modules_public/tables/levels_module/table.sql +1 -8
  14. package/deploy/schemas/metaschema_modules_public/tables/limits_module/table.sql +1 -14
  15. package/deploy/schemas/metaschema_modules_public/tables/membership_types_module/table.sql +1 -6
  16. package/deploy/schemas/metaschema_modules_public/tables/memberships_module/table.sql +1 -40
  17. package/deploy/schemas/metaschema_modules_public/tables/permissions_module/table.sql +1 -13
  18. package/deploy/schemas/metaschema_modules_public/tables/phone_numbers_module/table.sql +1 -6
  19. package/deploy/schemas/metaschema_modules_public/tables/profiles_module/table.sql +1 -28
  20. package/deploy/schemas/metaschema_modules_public/tables/relation_provision/table.sql +45 -7
  21. package/deploy/schemas/metaschema_modules_public/tables/rls_module/table.sql +2 -7
  22. package/deploy/schemas/metaschema_modules_public/tables/secrets_module/table.sql +1 -6
  23. package/deploy/schemas/metaschema_modules_public/tables/secure_table_provision/table.sql +9 -7
  24. package/deploy/schemas/metaschema_modules_public/tables/sessions_module/table.sql +4 -8
  25. package/deploy/schemas/metaschema_modules_public/tables/table_template_module/table.sql +1 -6
  26. package/deploy/schemas/metaschema_modules_public/tables/user_auth_module/table.sql +1 -3
  27. package/deploy/schemas/metaschema_modules_public/tables/users_module/table.sql +1 -10
  28. package/metaschema-modules.control +1 -1
  29. package/package.json +4 -4
  30. package/pgpm.plan +3 -2
  31. package/revert/schemas/metaschema_modules_public/tables/blueprint/table.sql +7 -0
  32. package/revert/schemas/metaschema_modules_public/tables/blueprint_template/table.sql +7 -0
  33. package/sql/metaschema-modules--0.15.5.sql +1 -1
  34. package/verify/schemas/metaschema_modules_public/tables/blueprint/table.sql +26 -0
  35. package/verify/schemas/metaschema_modules_public/tables/blueprint_template/table.sql +29 -0
  36. package/verify/schemas/metaschema_modules_public/tables/relation_provision/table.sql +1 -0
  37. package/verify/schemas/metaschema_modules_public/tables/secure_table_provision/table.sql +1 -0
  38. package/deploy/schemas/metaschema_modules_public/tables/table_module/table.sql +0 -37
  39. package/deploy/schemas/metaschema_modules_public/tables/uuid_module/table.sql +0 -23
  40. package/revert/schemas/metaschema_modules_public/tables/table_module/table.sql +0 -7
  41. package/revert/schemas/metaschema_modules_public/tables/uuid_module/table.sql +0 -7
  42. package/verify/schemas/metaschema_modules_public/tables/table_module/table.sql +0 -18
  43. package/verify/schemas/metaschema_modules_public/tables/uuid_module/table.sql +0 -7
@@ -1,18 +0,0 @@
1
- -- Verify schemas/metaschema_modules_public/tables/table_module/table on pg
2
-
3
- BEGIN;
4
-
5
- SELECT
6
- id,
7
- database_id,
8
- schema_id,
9
- table_id,
10
- table_name,
11
- node_type,
12
- use_rls,
13
- data,
14
- fields
15
- FROM metaschema_modules_public.table_module
16
- WHERE FALSE;
17
-
18
- ROLLBACK;
@@ -1,7 +0,0 @@
1
- -- Verify schemas/metaschema_modules_public/tables/uuid_module/table on pg
2
-
3
- BEGIN;
4
-
5
- SELECT verify_table ('metaschema_modules_public.uuid_module');
6
-
7
- ROLLBACK;