Table Name from Model
01:37 17 Aug 2013

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".

django