How can you get the SQL for a Django model's .save(), i.e.
from django.db import models
class MyM(models.Model):
text = models.TextField()
How can you get the SQL that would be created/used in the following scenario:
>>> m = MyM(text="123")
>>> m.save()
# What SQL Django just run?
Thanks!