Django OneToOneField default value
As NOT NULL constraint is getting failed hence error.
Either make null=True
album = models.OneToOneField(Album,on_delete=models.CASCADE, null=True)
Or use signals to connect the user with the album.
As NOT NULL constraint is getting failed hence error.
Either make null=True
album = models.OneToOneField(Album,on_delete=models.CASCADE, null=True)
Or use signals to connect the user with the album.