Skip to content
This repository was archived by the owner on Sep 25, 2025. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions data/ddl.sql
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,10 @@ create table user_groups (
);

create table rsvps (
user_id uuid references users(id),
user_id uuid references users(id),
event_id uuid references events(id),
date timestamptz not null,
accepted_at timestamptz,
declined_at timestamptz,
on_waitlist boolean not null default FALSE,
primary key (user_id, event_id)
Comment thread
conr marked this conversation as resolved.
);
Expand Down