Skip to content

Commit 6b09cd3

Browse files
committed
Merge remote-tracking branch 'ce-upstream/v0.12.0' into v0.12.0
2 parents 7a7f227 + be97981 commit 6b09cd3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

modules/auth/schema/creation.go

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import (
44
"context"
55

66
"github.com/spaceuptech/space-cloud/config"
7+
"github.com/spaceuptech/space-cloud/utils"
78
)
89

910
type creationModule struct {
@@ -14,6 +15,9 @@ type creationModule struct {
1415

1516
func (s *Schema) ModifyAllCollections(ctx context.Context, conf config.Crud) error {
1617
for dbName, crudStubValue := range conf {
18+
if utils.DBType(dbName) == utils.Mongo {
19+
continue
20+
}
1721
if !crudStubValue.Enabled {
1822
continue
1923
}

0 commit comments

Comments
 (0)