Skip to content

Commit

Permalink
fix: πŸ› changed attendance field name from maybe to attendance
Browse files Browse the repository at this point in the history
Signed-off-by: Adithya Anandsaikrishnan <[email protected]>
  • Loading branch information
adi-lux committed May 20, 2024
1 parent 8381a8a commit 2be71ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/db/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export const membersInMeeting = pgTable(
meetingId: uuid("meeting_id")
.notNull()
.references(() => meetings.id, { onDelete: "cascade" }),
attending: attendanceEnum("maybe"),
attending: attendanceEnum("availability"),
},
(table) => ({
pk: primaryKey({ columns: [table.memberId, table.meetingId] }),
Expand Down

0 comments on commit 2be71ec

Please sign in to comment.