Skip to content

Instantly share code, notes, and snippets.

@brunomichetti
Created September 13, 2022 17:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brunomichetti/c78a51fe3156340f7acfebd940150522 to your computer and use it in GitHub Desktop.
Save brunomichetti/c78a51fe3156340f7acfebd940150522 to your computer and use it in GitHub Desktop.
User.objects.create(
email="email1@mail.com",
name="User 1",
username="username_1",
date_of_birth=datetime(year=1990, month=10, day=25),
)
User.objects.create(
email="email2@mail.com",
name="User 2",
username="username_2",
date_of_birth=datetime(year=1982, month=1, day=5),
)
User.objects.create(
email="email3@mail.com",
name="User 3",
username="username_3",
date_of_birth=datetime(year=1974, month=5, day=16),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment