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
/* 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
28
+
/* (Optional) Keep indexes that are present in the database but not defined in the schema. Set this to `true` if you are adding indexes manually, so that they won't be removed when running schema migration. Default is `false`.
29
29
:DEFAULT: false */
30
30
keepUnknownIndexes: ?boolean;
31
31
/* Execute a callback before running schema migrations. */
0 commit comments