This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

chore(prisma): update schema.prisma after churros/churros change

+1
+1
schema.prisma
··· 507 507 visibility Visibility @default(Private) 508 508 createdAt DateTime @default(now()) 509 509 publishedAt DateTime @default(now()) 510 + notifiedAt DateTime? @default(now()) // to prevent old notifications before this was added. Another migration will remove this default value. 510 511 pictureFile String @default("") @db.VarChar(255) 511 512 links Link[] 512 513