-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Finalize db schema. #59
Comments
Q1-I don't know if anyone photographed the sketch of the data model... spammed Slack Q2-I found myself putting in the the same if not similar skills each week... Maybe there's a many_to_many on skills and users. Then when someone joins an event they can specify the skills (teaching/learning) for that particular event? <-- @jaybobo said this in Q3 Q3- Who starts en event? Or does it start automatically? Are people who RSVP'd for an event automatically added? Are they sent an email asking if they want to join? <-- The last seems like it might be the best option. Basic Start of Event Flow |
Q1 - I think I saw a few people take pictures of the board. I will work on some failing tests that will drive what I remember of the board. Q2 - This makes sense so far. Since Q3 - These are good questions; they're helping define the workflow. I think every I like the RSVP -> event auto-add, and the RSVP -> email options. I think email would work best too, because the time between the RSVP and the event, the user might have a change of plans. |
question1
Does someone have a picture of the data model somewhere?
question2
How do we want to handle the relationships between
Users
,Pairs
&Skills
? It seems to me thatSkills
are a one-time resource that live for the length of an event.question3
If so, should an event queue
Users
before they're put into pairs? I would think aUser
upon accessing anOrganization
'sEvent
would need to select theirSkill
for theEvent
, queue themselves and change their state toready_for_pairing
.The text was updated successfully, but these errors were encountered: