bugfix: model migrations
- made
CharFieldsnullable. 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 inIntegrityErrors being thrown later on.. you should useon_delete=models.SET_NULLfor most cases oron_delete=models.CASCADEwhen the changes should be cascaded
Let me know if these changes are okay with the front-end requirements
Cheers! :)