Currently, membership requests are stored in the person table. To disentangle this, we should make this a separate table. Separation of concerns. ``` class MembershipRequest: id = ... person_id = ... status = ... ```