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
Create a new app called membership and create two initial models
Member - representation of a member, using the Django user model as a ForeignKey (see Django Docs for more info)
Group - a group within the organisation. These are not used for permissions, but rather for members to self select themselves for e.g. communications send from that group
NOTE: for the member model the on_delete option should be set to PROTECT to keep track of previous transactions
Definition of Done
Models and migrations created
str function and test created for models
Models added to admin.py
App added to settings.py
The text was updated successfully, but these errors were encountered:
Create a new app called membership and create two initial models
NOTE: for the member model the on_delete option should be set to PROTECT to keep track of previous transactions
Definition of Done
The text was updated successfully, but these errors were encountered: