76 | | ensure that Django has permission to create and alter tables in the |
77 | | database you're using; if you plan to manually create the tables, you |
78 | | can simply grant Django ``SELECT``, ``INSERT``, ``UPDATE`` and |
79 | | ``DELETE`` permissions. On some databases, Django will need |
80 | | ``ALTER TABLE`` privileges during ``syncdb`` but won't issue |
| 76 | ensure that Django has permission to create and alter tables and to |
| 77 | manage indexes in the database you're using. If you plan to manually |
| 78 | create the tables, you can simply grant Django ``SELECT``, ``INSERT``, |
| 79 | ``UPDATE`` and ``DELETE`` permissions. On some databases, Django will |
| 80 | need ``ALTER TABLE`` privileges during ``syncdb`` but won't issue |