So I dropped a table in my database, and I want it back. Rerunning a migration gave errors table didn't exist. After some hunting I learned I could remove everything in my django_migrations that had app name my app. So i did that, reran migrations it started to work then griped about tables that were not dropped.
I have no idea how to just get the one table back again and keep everything as it was... anyway to do this?
I don't care about 90% of the data in the database, only a few tables and fields. The table i dropped i cared nothing about the data.