File tree 1 file changed +3
-3
lines changed
packages/realm-server/tests
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ module('Postgres', function (hooks) {
15
15
let result = await adapter . execute ( `
16
16
SELECT column_name
17
17
FROM information_schema.columns
18
- WHERE table_schema = 'public' -- Replace 'public' with the schema name if it's different
18
+ WHERE table_schema = 'public'
19
19
AND table_name = 'indexed_cards'
20
20
` ) ;
21
21
let columns = result . map ( ( r ) => r . column_name ) ;
@@ -38,7 +38,7 @@ module('Postgres', function (hooks) {
38
38
let result = await adapter . execute ( `
39
39
SELECT column_name
40
40
FROM information_schema.columns
41
- WHERE table_schema = 'public' -- Replace 'public' with the schema name if it's different
41
+ WHERE table_schema = 'public'
42
42
AND table_name = 'realm_versions'
43
43
` ) ;
44
44
let columns = result . map ( ( r ) => r . column_name ) ;
@@ -48,7 +48,7 @@ module('Postgres', function (hooks) {
48
48
let result = await adapter . execute ( `
49
49
SELECT column_name
50
50
FROM information_schema.columns
51
- WHERE table_schema = 'public' -- Replace 'public' with the schema name if it's different
51
+ WHERE table_schema = 'public'
52
52
AND table_name = 'jobs'
53
53
` ) ;
54
54
let columns = result . map ( ( r ) => r . column_name ) ;
You can’t perform that action at this time.
0 commit comments