With what command can I delete tables from a django db of a specific app/ only one table?
I did find all sorts of things, but not how to get rid of a table.
Also while I am at this.
I create the models and hit syncdb and then I have the tables.
If I want to update/add to those tables, do I run into problems?
Your best bet would be to get django-south installed in your machine.
if you are using pip, do
pip install django-southThis allows you too migrate data forward and backwards.
This is very handy especially if you need to update tables, and new tables etc.
check it out.
adding south to apps are as easy as
python manage.py schemamigration appname --initialMake your changes in a model and run the following
python manage.py schemamigration appname --autoOnce your data migration file has been created it’ll tell you data is now ready to migrate.
Simply use
python manage.py migrate appnamehttp://south.aeracode.org/docs/about.html
Hope this helps