mirror of
https://github.com/MeshEnvy/mesh-forge.git
synced 2026-06-28 05:51:41 +02:00
15 lines
250 B
TypeScript
15 lines
250 B
TypeScript
import { authTables } from '@convex-dev/auth/server'
|
|
import { defineSchema } from 'convex/server'
|
|
|
|
const schema = defineSchema(
|
|
{
|
|
...authTables,
|
|
// your other tables...
|
|
},
|
|
{
|
|
strictTableNameTypes: false,
|
|
}
|
|
)
|
|
|
|
export default schema
|