diff --git a/django_orm/README.md b/django_orm/README.md index 5e9912078cd..f2927a5cc99 100644 --- a/django_orm/README.md +++ b/django_orm/README.md @@ -55,6 +55,16 @@ Let's import User model first: What users do we have in our database? Try this: + >>> User.objects.all() + [] + +No users! lets create a user: + + >>> User.objects.create(username='ola') + + +What users do we now have in our database? Try this: + >>> User.objects.all() []