Skip to content

Commit abf866f

Browse files
committed
fix: restore standalone verify/revert trees clobbered by sync
The sync's directory replacement overwrote the standalone repo's verify/revert trees with constructive-db's (which is less complete), removing revert scripts required by the integration-test full-cycle. Restore them from main and add verify/revert for the two genuinely-new tables (integration_providers_module, db_preset_module).
1 parent e58dad2 commit abf866f

25 files changed

Lines changed: 169 additions & 0 deletions

File tree

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
-- Revert schemas/metaschema_modules_public/tables/agent_module/table from pg
2+
3+
BEGIN;
4+
5+
DROP TABLE metaschema_modules_public.agent_module;
6+
7+
COMMIT;
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
-- Revert schemas/metaschema_modules_public/tables/db_preset_module/table from pg
2+
3+
BEGIN;
4+
5+
DROP TABLE IF EXISTS metaschema_modules_public.db_preset_module CASCADE;
6+
7+
COMMIT;
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
-- Revert schemas/metaschema_modules_public/tables/entity_type_provision/table from pg
2+
3+
BEGIN;
4+
5+
DROP TABLE metaschema_modules_public.entity_type_provision;
6+
7+
COMMIT;
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
-- Revert schemas/metaschema_modules_public/tables/graph_module/table from pg
2+
3+
BEGIN;
4+
5+
DROP TABLE metaschema_modules_public.graph_module;
6+
7+
COMMIT;
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
-- Revert schemas/metaschema_modules_public/tables/integration_providers_module/table from pg
2+
3+
BEGIN;
4+
5+
DROP TABLE IF EXISTS metaschema_modules_public.integration_providers_module CASCADE;
6+
7+
COMMIT;
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
-- Revert schemas/metaschema_modules_public/tables/merkle_store_module/table from pg
2+
3+
BEGIN;
4+
5+
DROP TABLE metaschema_modules_public.merkle_store_module;
6+
7+
COMMIT;
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
-- Revert schemas/metaschema_modules_public/tables/session_secrets_module/table from pg
2+
3+
BEGIN;
4+
5+
DROP TABLE metaschema_modules_public.session_secrets_module;
6+
7+
COMMIT;
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
-- Verify schemas/metaschema_modules_public/tables/agent_module/table on pg
2+
3+
SELECT id, database_id
4+
FROM metaschema_modules_public.agent_module
5+
WHERE FALSE;
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
-- Verify schemas/metaschema_modules_public/tables/db_preset_module/table on pg
2+
3+
BEGIN;
4+
5+
SELECT id, database_id, public_schema_id, private_schema_id, merkle_store_module_id, store_name, scope, prefix
6+
FROM metaschema_modules_public.db_preset_module
7+
WHERE FALSE;
8+
9+
ROLLBACK;
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
-- Verify schemas/metaschema_modules_public/tables/entity_type_provision/table on pg
2+
3+
SELECT id, database_id
4+
FROM metaschema_modules_public.entity_type_provision
5+
WHERE FALSE;

0 commit comments

Comments
 (0)