Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Parse Schema Frozen

Tags:

parse-server

I have started using the parse-server npm module.

Everything starts up fine, but when I attempt to make REST requests to instantiate new objects in a new class, I get the following response:

{"code":107,"error":"schema is frozen, cannot add: AccountTest2"}

I've tried googling this issue but I am quite literally seeing no results whatsoever.

Thanks!

like image 487
Brad Hesse Avatar asked Nov 08 '22 14:11

Brad Hesse


1 Answers

I was able to fix this by dropping the

_SCHEMA 

collection from MongoDB using Robomongo.

I'm honestly not 100% sure what the _SCHEMA collection is for (looks like it just holds/caches the standard/typical schema for your objects so when you change the object schema we get this frozen error); if someone could enlighten us in this area would be great :)

like image 100
Milean Avatar answered Dec 29 '22 03:12

Milean