From 73195369e82dae9c3835247fe8c589f7b6ee7b7d Mon Sep 17 00:00:00 2001 From: Fernando Date: Sat, 31 May 2025 20:39:44 -0400 Subject: [PATCH] update course model to include created at --- prisma/schema.prisma | 1 + 1 file changed, 1 insertion(+) diff --git a/prisma/schema.prisma b/prisma/schema.prisma index 1e1f1dd..fc0df36 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -90,6 +90,7 @@ model Note { model Course { id String @id @default(cuid()) + createdAt DateTime @default(now()) name String @unique // Calculus 2 code String @unique // MAC2312 url String?