This commit is contained in:
2026-01-23 14:26:06 +08:00
commit 244a8131f4
13 changed files with 554 additions and 0 deletions

9
convex/schema.ts Normal file
View File

@@ -0,0 +1,9 @@
import { defineSchema, defineTable } from "convex/server";
import { v } from "convex/values";
// Define a messages table with an index.
export default defineSchema({
abcv: defineTable({
title: v.string(),
})
});