Is there a way to change the package registration in a django model?
Let's say we have a model named:
app_alpha.models.Page
I would like no transform it into
app_beta.models.Page
and have makemigrations create the proper table.
Is there a way to change the package registration in a django model?
Let's say we have a model named:
app_alpha.models.Page
I would like no transform it into
app_beta.models.Page
and have makemigrations create the proper table.