You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
users.members is a boolean, while the user_memberships table is associated to stripe subscriptions.
I'm guessing that users.member is meant to capture old members from before the transition to user-api. However it's got no time frame associated with it so we should probably just use the user_memberships table.
Edit: to clarify it looks like users.member table is a check to verify that a user is a music making member. Again, this probably should be automatically calculated based on if someone has just uploaded a track to Resonate (which is what it does in that migration script), rather than stashed.
But since there's no way to manually keep track of worker members (except for on the Discourse) we can keep the user.member column and use it for that. The other two memberships should be calculated automatically though.
The text was updated successfully, but these errors were encountered:
we decided that the members column was legacy information that we would keep toggled for now, but that we would eventually use it to indicate worker members.
users.members
is a boolean, while theuser_memberships
table is associated to stripe subscriptions.I'm guessing that
users.member
is meant to capture old members from before the transition touser-api
. However it's got no time frame associated with it so we should probably just use theuser_memberships
table.Edit: to clarify it looks like
users.member
table is a check to verify that a user is a music making member. Again, this probably should be automatically calculated based on if someone has just uploaded a track to Resonate (which is what it does in that migration script), rather than stashed.But since there's no way to manually keep track of worker members (except for on the Discourse) we can keep the
user.member
column and use it for that. The other two memberships should be calculated automatically though.The text was updated successfully, but these errors were encountered: