I have model Foo which resides inside app bar. Now, I wish to move thmodel to app bar2. I am already using db_table when syncdb with bar before
meta:
db_table = 'foo_table'
Now when I do schemamigration with bar, south wants me to delete the table. Is there any ways I can avoid this (table name foo_table is still the same despite changing the app) without manually editing the migration file?