I have a table named tableA with columns "name" and "age" built using model.py.
Now I wanted to add another column like "gender" but this time not by changing model.py but directly through admin panel.
I know that admin panel allows to add values to the existing table but i wanted to add a feature where we can add columns too through the admin panel and not by hardcoding in model.py
So is it possible?