diff options
| author | yxshv <[email protected]> | 2024-04-13 14:09:56 +0530 |
|---|---|---|
| committer | yxshv <[email protected]> | 2024-04-13 14:09:56 +0530 |
| commit | 460b3459977fcc04c68f8ef792d94a3789a6b941 (patch) | |
| tree | 8d6fc04847d915fc11afa0d21df179b8facb789f /apps/web/src/server | |
| parent | e (diff) | |
| download | supermemory-460b3459977fcc04c68f8ef792d94a3789a6b941.tar.xz supermemory-460b3459977fcc04c68f8ef792d94a3789a6b941.zip | |
memory item
Diffstat (limited to 'apps/web/src/server')
| -rw-r--r-- | apps/web/src/server/db/schema.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/web/src/server/db/schema.ts b/apps/web/src/server/db/schema.ts index daac595c..f36e7740 100644 --- a/apps/web/src/server/db/schema.ts +++ b/apps/web/src/server/db/schema.ts @@ -134,3 +134,6 @@ export const space = createTable( export type StoredContent = Omit<typeof storedContent.$inferSelect, "user">; export type StoredSpace = typeof space.$inferSelect; +export type ChachedSpaceContent = StoredContent & { + space: number; +} |