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
{{ message }}
This repository has been archived by the owner on Feb 22, 2020. It is now read-only.
The CasePleuralSpaces.left_pleural_space and CasePleuralSpaces.right_pleural_space fields are nullable (ie. null=True).
Possible Solution
This could be an oversight; perhaps we can make them not-null - it would certainly be tidier and cleaner.
(One outcome here could certainly be that they need to be nullable; just needs good checking)
Checklist before submitting
I have confirmed this using the officially supported Docker Compose setup using the local.yml configuration and ensured that I built the containers again and they reflect the most recent version of the project at the HEAD commit on the master branch
I have searched through the other currently open issues and am confident this is not a duplicate of an existing bug
I provided a minimal code snippet or list of steps that reproduces the bug.
I provided screenshots where appropriate
I filled out all the relevant sections of this template
The text was updated successfully, but these errors were encountered:
Hey @lamby, I'm interested in taking a look at this if it's still open.
If we get rid of null=True on CasePleuralSpaces, the implications are:
Tidier and cleaner
Both left and right lung information must be given. It's not possible to have a case about a left_pleural_space or a right_pleural_space alone.
Suggestion: it should be possible to provide information for either lung or both lungs but not no information of either i.e. at max, 1 of left_pleural_space, right_pleural_space can be null.
I'm new to django, if this makes sense do you have any suggestions as to how I could implement this?
The CasePleuralSpaces.left_pleural_space and CasePleuralSpaces.right_pleural_space fields are nullable (ie.
null=True
).Possible Solution
This could be an oversight; perhaps we can make them not-null - it would certainly be tidier and cleaner.
(One outcome here could certainly be that they need to be nullable; just needs good checking)
Checklist before submitting
local.yml
configuration and ensured that I built the containers again and they reflect the most recent version of the project at theHEAD
commit on themaster
branchThe text was updated successfully, but these errors were encountered: