mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-06-03 19:25:19 +02:00
7 lines
No EOL
207 B
TypeScript
7 lines
No EOL
207 B
TypeScript
import { IndexDescription } from "mongodb";
|
|
|
|
export const USERS_COLLECTION = "users";
|
|
|
|
export const USERS_INDEXES: IndexDescription[] = [
|
|
{ key: { auth0Id: 1 }, name: "auth0Id_unique", unique: true },
|
|
]; |