Skip to content

Commit 3c9c0af

Browse files
committed
no index on users
1 parent bda0184 commit 3c9c0af

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

convex/schema.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ const schema = defineSchema({
3232
v.union(...validCapabilities.map((cap) => v.literal(cap)))
3333
),
3434
adsDisabled: v.optional(v.boolean()),
35-
}).index('by_email', ['email']),
35+
}),
36+
// .index('by_email', ['email']),
3637
})
3738

3839
export default schema

0 commit comments

Comments
 (0)