Files
SanatiLeads/convex/schema.ts

10 lines
221 B
TypeScript

import { defineSchema, defineTable } from "convex/server";
import { authTables } from "@convex-dev/auth/server";
const schema = defineSchema({
...authTables,
// Your other tables here
});
export default schema;