I have not tried this, but there is a solution here that should allow you to change the application shortcut when working with syncdb .
class model_module1(models.model): [...] class Meta: app_label = "Cool module name" db_table = "module1_model" class model_module2(models.model): [...] class Meta: app_label = "Cool module name" db_table = "module2_model"
This makes sense, as the table name becomes explicit, so when you run syncdb there is no guessing . The disadvantage is that these two Meta options must be specified in each application model.
Armando Pérez Marqués
source share