I’m trying to design some Django models my question is.
How do you create an alias for the db table when if differs from what I want it to be call in the model?
class Person(models.Model):
name = models.CharField(max_length=30)
database table
core_Person
from the documenation:
If you’re not familiary with Meta options, django gives you some information about them here