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
"(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`.",
/* 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
+
/* (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
+
: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