-
-
Notifications
You must be signed in to change notification settings - Fork 28
Updated User model variable names #477
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
base: main
Are you sure you want to change the base?
Conversation
From slack after looking at error output from error output excerpt
|
1eba559
to
850f20d
Compare
Just converting this to draft for now, @del9ra |
Understood, thanks! |
Need to review with @Neecolaa the user table... this PR has not merged yet. See PD: Table and field explanations spreadsheet with filter user |
@del9ra the referred_by field by default should be null unless the user provides other information. Also change the name of the field to referrer. Once you fix that, please resubmit for review |
31f4f27
to
1470dd0
Compare
app/core/models.py
Outdated
|
||
user_status = models.ForeignKey( | ||
"UserStatusType", null=True, on_delete=models.PROTECT | ||
) | ||
# current_practice_area = models.ManyToManyField("PracticeArea") | ||
# target_practice_area = models.ManyToManyField("PracticeArea") | ||
practice_area_primary = models.ManyToManyField( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this field is just a FK relation rather than many-to-many.
Also, you should delete the "current_practice_area" comment above as well.
Fixes #429
What changes did you make?
email
because of the issues withemail
fieldUserStatusType
andPracticeArea
Why did you make the changes (we will use this info to test)?