[Answered ]-Creating new table while iterating through a queryset in django

2👍

You can create new objects and save them to the database afterwards using save():

for i in qs:
    obj = myEmails(text=i.text)
    obj.save()

Leave a comment