feat: Add initial frontend components and their corresponding build assets, along with generated API types and configuration.
Some checks failed
Build and Release / build-and-release (push) Failing after 7m50s
Some checks failed
Build and Release / build-and-release (push) Failing after 7m50s
This commit is contained in:
@@ -106,4 +106,13 @@ export default defineSchema({
|
||||
})
|
||||
.index("by_channel", ["channelId"])
|
||||
.index("by_user", ["userId"]),
|
||||
|
||||
channelReadState: defineTable({
|
||||
userId: v.id("userProfiles"),
|
||||
channelId: v.id("channels"),
|
||||
lastReadTimestamp: v.number(),
|
||||
})
|
||||
.index("by_user", ["userId"])
|
||||
.index("by_channel", ["channelId"])
|
||||
.index("by_user_and_channel", ["userId", "channelId"]),
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user