[Answered ]-How to save an instance of a Django model to my database

2👍

You’ve said it:

create some kind of Job instance, and save it to my database

job = Job(field1=value1, field2=value2)
job.save()

Also see documentation.

👤alecxe

Leave a comment