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
'Drops indexes that are not defined in the schema and are present in the database. Set this false if you are adding indexes manually so that it wont be dropped when you run schema migration',
34
+
'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
-
/* Drops indexes that are not defined in the schema and are present in the database. Set this false if you are adding indexes manually so that it wont be dropped when you run schema migration
29
-
:DEFAULT: true */
30
-
dropUnknownIndexes: ?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;
31
31
/* Execute a callback before running schema migrations. */
32
32
beforeMigration: ?()=>void|Promise<void>;
33
33
/* Execute a callback after running schema migrations. */
0 commit comments