You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'Keep indexes that are not defined in the schema and are present in the database. Set this to true if you are adding indexes manually so that it wont be dropped when you run schema migration',
/* Is true if Parse Server will reject any attempts to modify the schema while the server is running.
26
26
:DEFAULT: false */
27
27
lockSchemas: ?boolean;
28
+
/* Keep indexes that are not defined in the schema and are present in the database. Set this to true if you are adding indexes manually so that it wont be dropped when you run schema migration
29
+
:DEFAULT: false */
30
+
keepUnknownIndexes: ?boolean;
28
31
/* Execute a callback before running schema migrations. */
29
32
beforeMigration: ?()=>void|Promise<void>;
30
33
/* Execute a callback after running schema migrations. */
0 commit comments