mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-26 21:39:43 +02:00
fix(zero):add authz parent schemas
This commit is contained in:
parent
3cbd109e8d
commit
90c3dc98ca
3 changed files with 56 additions and 4 deletions
|
|
@ -20,6 +20,13 @@ export const newChatMessageTable = table("new_chat_messages")
|
|||
})
|
||||
.primaryKey("id");
|
||||
|
||||
export const newChatThreadTable = table("new_chat_threads")
|
||||
.columns({
|
||||
id: number(),
|
||||
searchSpaceId: number().from("search_space_id"),
|
||||
})
|
||||
.primaryKey("id");
|
||||
|
||||
export const chatCommentTable = table("chat_comments")
|
||||
.columns({
|
||||
id: number(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue