mgroves/NoSqlMigrator

InDefaultScope is missing from Create.Collection

mgroves opened this issue · 0 comments

        public override void Up()
        {
            Create.Collection("Users")
                .InScope("_default");
        }

should be instead:

        public override void Up()
        {
            Create.Collection("Users")
                .InDefaultScope();
        }