Table Name from Model
When I have created query for the following model
class City(models.Model):
city_id = models.BigIntegerField(primary_key=True)
the table name comes like "lookups_city" where "lookups" is my module name. Is there any way to just consider only the class name? Because I'm migrating my application from another platform to Python where I have table as "city".