| 79 | | ``DELETE`` permissions. On some databases, Django will need to have |
|---|
| 80 | | ``ALTER TABLE`` privileges during ``syncdb`` (in order to create |
|---|
| 81 | | foreign key constraints properly on databases which do not allow them |
|---|
| 82 | | to be deferred), but will not issue ``ALTER TABLE`` statements on a |
|---|
| 83 | | table once ``syncdb`` has finished setting it up. |
|---|
| 84 | | |
|---|
| 85 | | If you will be using Django's `testing framework`_ with data fixtures, |
|---|
| 86 | | Django will need permission to create a temporary test database. |
|---|
| | 79 | ``DELETE`` permissions. On some databases, Django will need |
|---|
| | 80 | ``ALTER TABLE`` privileges during ``syncdb`` but won't issue |
|---|
| | 81 | ``ALTER TABLE`` statements on a table once ``syncdb`` has created it. |
|---|
| | 82 | |
|---|
| | 83 | If you're using Django's `testing framework`_ to test database queries, |
|---|
| | 84 | Django will need permission to create a test database. |
|---|