improved UX + improved performance

This commit is contained in:
daniel31x13
2024-03-10 06:08:28 -04:00
parent 3feeecdc1d
commit 4a0e75c6e5
18 changed files with 135 additions and 57 deletions
+4
View File
@@ -93,6 +93,8 @@ model Collection {
links Link[]
createdAt DateTime @default(now())
updatedAt DateTime @default(now()) @updatedAt
@@index([ownerId])
}
model UsersAndCollections {
@@ -107,6 +109,7 @@ model UsersAndCollections {
updatedAt DateTime @default(now()) @updatedAt
@@id([userId, collectionId])
@@index([userId])
}
model Link {
@@ -139,6 +142,7 @@ model Tag {
updatedAt DateTime @default(now()) @updatedAt
@@unique([name, ownerId])
@@index([ownerId])
}
model Subscription {