I recently added a created_by
attribute in Store
model. Since this automatically gets a current logged in user when a store is created, if I don't manually assign any user, that column will be forever null.
class Store(models.Model):
...
created_by = ForeignKey(settings.AUTH_USER_MODEL, related_name='stores_of_created_by', null=True, blank=True)
So, I want to assign a user manually. I think Django Shell (something that can be triggered through python manage.py shell) would be a good way to assign users manually.
I'm very confused how I can manually assign a user in a specific attribute of all stores. So far I got a specific user and all stores in the following way.
from django.contrib.auth.models import User
from boutique.models import Store
stores = Store.objects.all()
user = User.objects.get(username='[email protected]')
After that, I need to loop through all stores and assign the user in created_by
of all stores. How can I do that in Django Shell
?
Try this
loop through the
Store
QuerySet and assigncreated_by
attribute with specificUser
instance (here it isuser
)If you wish to create
Store
objects withcreated_by
as admin, change your model as below,