Skip to content

Commit 0873344

Browse files
committed
fix: restore missing services revert files needed by integration test
1 parent 2719144 commit 0873344

11 files changed

Lines changed: 77 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/services_private/schema from pg
2+
3+
BEGIN;
4+
5+
DROP SCHEMA services_private;
6+
7+
COMMIT;
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
-- Revert schemas/services_public/schema from pg
2+
3+
BEGIN;
4+
5+
DROP SCHEMA services_public;
6+
7+
COMMIT;
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
-- Revert schemas/services_public/tables/api_modules/table from pg
2+
3+
BEGIN;
4+
5+
DROP TABLE services_public.api_modules;
6+
7+
COMMIT;
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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;
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
-- Revert schemas/services_public/tables/apis/table from pg
2+
3+
BEGIN;
4+
5+
DROP TABLE services_public.apis;
6+
7+
COMMIT;
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
-- Revert schemas/services_public/tables/apps/table from pg
2+
3+
BEGIN;
4+
5+
DROP TABLE services_public.apps;
6+
7+
COMMIT;
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
-- Revert schemas/services_public/tables/domains/table from pg
2+
3+
BEGIN;
4+
5+
DROP TABLE services_public.domains;
6+
7+
COMMIT;
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
-- Revert schemas/services_public/tables/site_metadata/table from pg
2+
3+
BEGIN;
4+
5+
DROP TABLE services_public.site_metadata;
6+
7+
COMMIT;
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
-- Revert schemas/services_public/tables/site_modules/table from pg
2+
3+
BEGIN;
4+
5+
DROP TABLE services_public.site_modules;
6+
7+
COMMIT;
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
-- Revert schemas/services_public/tables/site_themes/table from pg
2+
3+
BEGIN;
4+
5+
DROP TABLE services_public.site_themes;
6+
7+
COMMIT;

0 commit comments

Comments
 (0)