After installing django-paypal, and doing a syncdb - when I logged in as admin, I didn't see any Paypal IPN tables in the database. After some searching, I found a post on Integrating Django and Paypal, which said:
Just in case anyone is running into DB related problems, django-paypal uses South to handle it's model creation. So running ./manage.py syncdb will not create the Paypal related tables.
Wups. So my question is, is there any simple way to create the tables other than installing South? Or is that the only real option?
(Yes, I'm sure I should install South at some point - right now, it's just one more package to install/configure, that needs to be learned - and might break things. :)