mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-02 19:55:18 +02:00
- Create zero/tables/inbox.ts (notifications) - Create zero/tables/documents.ts (documents, search_source_connectors) - Create zero/tables/chat.ts (new_chat_messages, chat_comments, chat_session_state) - Create zero/schema.ts (combines tables, defines relationships, exports zql) - Consolidate Zero type augmentations into types/zero.d.ts
16 lines
481 B
TypeScript
16 lines
481 B
TypeScript
import { table, string, number, boolean, json } from "@rocicorp/zero";
|
|
|
|
export const notificationTable = table("notifications")
|
|
.columns({
|
|
id: number(),
|
|
userId: string().from("user_id"),
|
|
searchSpaceId: number().optional().from("search_space_id"),
|
|
type: string(),
|
|
title: string(),
|
|
message: string(),
|
|
read: boolean(),
|
|
metadata: json().optional(),
|
|
createdAt: number().from("created_at"),
|
|
updatedAt: number().optional().from("updated_at"),
|
|
})
|
|
.primaryKey("id");
|