1Given the following Django model: Choose the correct way to create the "John Doe" user with the "john@doe.com" email address.
class User(models.Model):
email = models.EmailField()
first_name = models.CharField(max_length=255)
last_name = models.CharField(max_length= 255)
is_active = models.BooleanField(default=True)