[Answered ]-IntegrityError Django Model

1👍

It looks like you’re not passing in the user when you’re trying to save. Try this:

app = Application(user=request.user, name='App X', etc)
app.save()

Leave a comment