@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.
- package/deploy/schemas/metaschema_modules_public/tables/blueprint/table.sql +119 -0
- package/deploy/schemas/metaschema_modules_public/tables/blueprint_template/table.sql +137 -0
- package/deploy/schemas/metaschema_modules_public/tables/connected_accounts_module/table.sql +1 -6
- package/deploy/schemas/metaschema_modules_public/tables/crypto_addresses_module/table.sql +1 -6
- package/deploy/schemas/metaschema_modules_public/tables/crypto_auth_module/table.sql +1 -7
- package/deploy/schemas/metaschema_modules_public/tables/default_ids_module/table.sql +1 -2
- package/deploy/schemas/metaschema_modules_public/tables/denormalized_table_field/table.sql +1 -6
- package/deploy/schemas/metaschema_modules_public/tables/emails_module/table.sql +1 -6
- package/deploy/schemas/metaschema_modules_public/tables/encrypted_secrets_module/table.sql +1 -6
- package/deploy/schemas/metaschema_modules_public/tables/field_module/table.sql +1 -5
- package/deploy/schemas/metaschema_modules_public/tables/hierarchy_module/table.sql +1 -19
- package/deploy/schemas/metaschema_modules_public/tables/invites_module/table.sql +1 -8
- package/deploy/schemas/metaschema_modules_public/tables/levels_module/table.sql +1 -8
- package/deploy/schemas/metaschema_modules_public/tables/limits_module/table.sql +1 -14
- package/deploy/schemas/metaschema_modules_public/tables/membership_types_module/table.sql +1 -6
- package/deploy/schemas/metaschema_modules_public/tables/memberships_module/table.sql +1 -40
- package/deploy/schemas/metaschema_modules_public/tables/permissions_module/table.sql +1 -13
- package/deploy/schemas/metaschema_modules_public/tables/phone_numbers_module/table.sql +1 -6
- package/deploy/schemas/metaschema_modules_public/tables/profiles_module/table.sql +1 -28
- package/deploy/schemas/metaschema_modules_public/tables/relation_provision/table.sql +45 -7
- package/deploy/schemas/metaschema_modules_public/tables/rls_module/table.sql +2 -7
- package/deploy/schemas/metaschema_modules_public/tables/secrets_module/table.sql +1 -6
- package/deploy/schemas/metaschema_modules_public/tables/secure_table_provision/table.sql +9 -7
- package/deploy/schemas/metaschema_modules_public/tables/sessions_module/table.sql +4 -8
- package/deploy/schemas/metaschema_modules_public/tables/table_template_module/table.sql +1 -6
- package/deploy/schemas/metaschema_modules_public/tables/user_auth_module/table.sql +1 -3
- package/deploy/schemas/metaschema_modules_public/tables/users_module/table.sql +1 -10
- package/metaschema-modules.control +1 -1
- package/package.json +4 -4
- package/pgpm.plan +3 -2
- package/revert/schemas/metaschema_modules_public/tables/blueprint/table.sql +7 -0
- package/revert/schemas/metaschema_modules_public/tables/blueprint_template/table.sql +7 -0
- package/sql/metaschema-modules--0.15.5.sql +1 -1
- package/verify/schemas/metaschema_modules_public/tables/blueprint/table.sql +26 -0
- package/verify/schemas/metaschema_modules_public/tables/blueprint_template/table.sql +29 -0
- package/verify/schemas/metaschema_modules_public/tables/relation_provision/table.sql +1 -0
- package/verify/schemas/metaschema_modules_public/tables/secure_table_provision/table.sql +1 -0
- package/deploy/schemas/metaschema_modules_public/tables/table_module/table.sql +0 -37
- package/deploy/schemas/metaschema_modules_public/tables/uuid_module/table.sql +0 -23
- package/revert/schemas/metaschema_modules_public/tables/table_module/table.sql +0 -7
- package/revert/schemas/metaschema_modules_public/tables/uuid_module/table.sql +0 -7
- package/verify/schemas/metaschema_modules_public/tables/table_module/table.sql +0 -18
- 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;
|