File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/firestore/src/local Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,8 @@ import {
35
35
// TODO(indexing): Remove this constant
36
36
const INDEXING_ENABLED = false ;
37
37
38
+ export const INDEXING_SCHEMA_VERSION = 12 ;
39
+
38
40
/**
39
41
* Schema Version for the Web client:
40
42
* 1. Initial version including Mutation Queue, Query Cache, and Remote
@@ -55,9 +57,7 @@ const INDEXING_ENABLED = false;
55
57
* 11. Add bundles and named_queries for bundle support.
56
58
* 12. Add indexing support.
57
59
*/
58
- export const SCHEMA_VERSION = INDEXING_ENABLED ? 12 : 11 ;
59
-
60
- export const INDEXING_SCHEMA_VERSION = 12 ;
60
+ export const SCHEMA_VERSION = INDEXING_ENABLED ? INDEXING_SCHEMA_VERSION : 11 ;
61
61
62
62
/**
63
63
* Wrapper class to store timestamps (seconds and nanos) in IndexedDb objects.
You can’t perform that action at this time.
0 commit comments