I am trying to get a project from one machine to another. This project contains a massive log db table. It is too massive. So I exported and imported all db tables except this one via phpmyadmin.
No if I run the migrate command I expected django to create everything missing. But it is not.
How to make django check for and create missing db tables?
What am I missing, why is it not doing this? I feel like the old syncdb did the job. But the new --run-syncdb does not.
Thank you for your help.