[Answer]-Django where is the save command in this code?

1👍

Using the create() method on a QuerySet will automatically save the object, as specified in the documentation.

You can think of it as effectively an SQL INSERT statement.

👤Wogan

Leave a comment