2024-10-30 16:01:24 +05:30
|
|
|
import { Message } from 'ai';
|
|
|
|
|
import { InferSelectModel } from 'drizzle-orm';
|
|
|
|
|
import {
|
|
|
|
|
pgTable,
|
|
|
|
|
varchar,
|
|
|
|
|
timestamp,
|
|
|
|
|
json,
|
|
|
|
|
uuid,
|
|
|
|
|
text,
|
|
|
|
|
primaryKey,
|
|
|
|
|
foreignKey,
|
|
|
|
|
boolean,
|
|
|
|
|
} from 'drizzle-orm/pg-core';
|
|
|
|
|
|
|
|
|
|
export const user = pgTable('User', {
|
|
|
|
|
id: uuid('id').primaryKey().notNull().defaultRandom(),
|
|
|
|
|
email: varchar('email', { length: 64 }).notNull(),
|
|
|
|
|
password: varchar('password', { length: 64 }),
|
2024-10-11 18:00:22 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export type User = InferSelectModel<typeof user>;
|
|
|
|
|
|
2024-10-30 16:01:24 +05:30
|
|
|
export const chat = pgTable('Chat', {
|
|
|
|
|
id: uuid('id').primaryKey().notNull().defaultRandom(),
|
|
|
|
|
createdAt: timestamp('createdAt').notNull(),
|
|
|
|
|
messages: json('messages').notNull(),
|
|
|
|
|
userId: uuid('userId')
|
2024-10-11 18:00:22 +05:30
|
|
|
.notNull()
|
|
|
|
|
.references(() => user.id),
|
|
|
|
|
});
|
|
|
|
|
|
2024-10-30 16:01:24 +05:30
|
|
|
export type Chat = Omit<InferSelectModel<typeof chat>, 'messages'> & {
|
2024-10-11 18:00:22 +05:30
|
|
|
messages: Array<Message>;
|
|
|
|
|
};
|
2024-10-30 16:01:24 +05:30
|
|
|
|
|
|
|
|
export const document = pgTable(
|
|
|
|
|
'Document',
|
|
|
|
|
{
|
|
|
|
|
id: uuid('id').notNull().defaultRandom(),
|
|
|
|
|
createdAt: timestamp('createdAt').notNull(),
|
|
|
|
|
title: text('title').notNull(),
|
|
|
|
|
content: text('content'),
|
|
|
|
|
userId: uuid('userId')
|
|
|
|
|
.notNull()
|
|
|
|
|
.references(() => user.id),
|
|
|
|
|
},
|
|
|
|
|
(table) => {
|
|
|
|
|
return {
|
|
|
|
|
pk: primaryKey({ columns: [table.id, table.createdAt] }),
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
export type Document = InferSelectModel<typeof document>;
|
|
|
|
|
|
|
|
|
|
export const Suggestion = pgTable(
|
|
|
|
|
'Suggestion',
|
|
|
|
|
{
|
|
|
|
|
id: uuid('id').notNull().defaultRandom(),
|
|
|
|
|
documentId: uuid('documentId').notNull(),
|
|
|
|
|
documentCreatedAt: timestamp('documentCreatedAt').notNull(),
|
|
|
|
|
originalText: text('originalText').notNull(),
|
|
|
|
|
suggestedText: text('suggestedText').notNull(),
|
|
|
|
|
description: text('description'),
|
|
|
|
|
isResolved: boolean('isResolved').notNull().default(false),
|
|
|
|
|
userId: uuid('userId')
|
|
|
|
|
.notNull()
|
|
|
|
|
.references(() => user.id),
|
|
|
|
|
createdAt: timestamp('createdAt').notNull(),
|
|
|
|
|
},
|
|
|
|
|
(table) => ({
|
|
|
|
|
pk: primaryKey({ columns: [table.id] }),
|
|
|
|
|
documentRef: foreignKey({
|
|
|
|
|
columns: [table.documentId, table.documentCreatedAt],
|
|
|
|
|
foreignColumns: [document.id, document.createdAt],
|
|
|
|
|
}),
|
|
|
|
|
})
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
export type Suggestion = InferSelectModel<typeof Suggestion>;
|