8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59cf71b commit eb8c6c3Copy full SHA for eb8c6c3
migrations/tests/database/exists.sql
@@ -1,10 +1,8 @@
1
2
-SELECT schemas_are(ARRAY[
3
- 'public',
4
- 'auth',
5
- 'extensions',
6
- 'graphql',
7
- 'graphql_public',
8
- 'realtime',
9
- 'storage'
10
- ]);
+SELECT has_schema('public');
+SELECT has_schema('auth');
+SELECT has_schema('extensions');
+SELECT has_schema('graphql');
+SELECT has_schema('graphql_public');
+SELECT has_schema('realtime');
+SELECT has_schema('storage');
migrations/tests/test.sql
@@ -3,7 +3,7 @@
BEGIN;
-SELECT plan(13);
+SELECT plan(19);
\ir fixtures.sql
\ir database/test.sql
0 commit comments