Add custom emojis
All checks were successful
Build and Release / build-and-release (push) Successful in 10m4s

This commit is contained in:
Bryan1029384756
2026-02-16 21:33:37 -06:00
parent 2b9fd4e7e0
commit b63c7a71e1
10 changed files with 663 additions and 73 deletions

View File

@@ -132,4 +132,11 @@ export default defineSchema({
afkTimeout: v.number(), // seconds (default 300 = 5 min)
iconStorageId: v.optional(v.id("_storage")),
}),
customEmojis: defineTable({
name: v.string(),
storageId: v.id("_storage"),
uploadedBy: v.id("userProfiles"),
createdAt: v.number(),
}).index("by_name", ["name"]),
});