bugfix: model migrations
- made
CharFields
nullable. Currently for backlinks these fields need to be nullable: djangoldp-packages/djangoldp#224 - you should not use
on_delete=models.DO_NOTHING
.. this makes the database corrupted and will result inIntegrityError
s being thrown later on.. you should useon_delete=models.SET_NULL
for most cases oron_delete=models.CASCADE
when the changes should be cascaded
Let me know if these changes are okay with the front-end requirements
Cheers! :)
Merge request reports
Activity
Filter activity
Please register or sign in to reply