Skip to content

Commit

Permalink
comments from review
Browse files Browse the repository at this point in the history
  • Loading branch information
alasdairwilson committed Oct 30, 2023
1 parent 281b9e1 commit 93f8e37
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-- AlterTable
ALTER TABLE "Event" ADD COLUMN "enrolKey" TEXT NOT NULL,
ADD COLUMN "instructorKey" TEXT NOT NULL;
4 changes: 2 additions & 2 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ model Event {
summary String @default("")
enrol String @default("")
content String @default("")
enrolKey String @default("")
instructorKey String @default("@mHJdxza218sxzd014s8ASDsa0axv0sdfmBJNLM=3asfdnmYHL1234adczcz") // just in case this is unset then we don't want to let blank keys let users in
enrolKey String @default(uuid())
instructorKey String @default(uuid())
start DateTime @default(now())
end DateTime @default(now())
hidden Boolean @default(true)
Expand Down

0 comments on commit 93f8e37

Please sign in to comment.