I created an app and using AppConfig I changed the label to another name (abc to my_abc). The migration was successful and the table was created with the label prefix. But when I access the page, Django emits an error that is trying to access the table without taking into account that has changed the name of the label, it is trying to access the table "abc", but should access "my_abc".
ProgrammingError
relation "abc" does not exist
Is it a bug or am I doing something wrong?