Models | Django documentation | Django
https://docs.djangoproject.com/en/4.0/topics/db/modelsSome technical notes: The name of the table, myapp_person, is automatically derived from some model metadata but can be overridden.See Table names for more details.; An id field is added automatically, but this behavior can be overridden. See Automatic primary key fields.; The CREATE TABLE SQL in this example is formatted using PostgreSQL syntax, but it’s worth noting Django …