django stuff

south ./manage.py schemamigration wombat --auto ./manage.py migrate wombat permissions update permissions with django-extension http://devwithpassion.com/felipe/south-django-permissions/ ./manage.py syncdb --all

nice list of open source alt software

http://prism-break.org/

create a new mysql db & user and grant privs

mysql> create database wombat; Query OK, 1 row affected (0.00 sec) mysql> grant all privileges on wombat.* to wombat@localhost identified by 'wombat'; Query OK, 0 rows affected (0.00 sec) mysql> flush privileges; Query OK, 0 rows affected (0.00 sec)