I want to add some set of classes to models.py file in the django app which already has some classes created in that synchronized and contain data in each one of them in the database (created in mysql).
when I add new classes and type command
python manage.py makemigrations app-label//(using django 1.8 version)
it shows the
creating table names ...
but I when I run :
python manage.py migrate
it shows ...
table "access_log" already exists
I have tried many of the stack overflow links but nothing helped me. Like few of them are :
Also my exiting tables with data in database have attribute managed = false. Will that affect ?
Why is this happening?
Please help, I am not much well-versed with django.