Seguendo questo Django di Example tutotrial qui: http://lightbird.net/dbe/todo_list.html
Il tutorial dice:
"Questo cambia il layout della nostra tabella e dovremo chiedere a Django di reimpostare e ricreare le tabelle:
manage.py reset todo; manage.py syncdb
"
tuttavia, quando corro manage.py reset todo
, ottengo l'errore:
$ python manage.py reset todo
- Unknown command: 'reset'
È perché sto usando sqlite3 e non postgresql?
Qualcuno può dirmi qual è il comando per ripristinare il database?
Il comando: python manage.py sqlclear todo
restituisce l'errore:
$ python manage.py sqlclear todo
CommandError: App with label todo could not be found.
Are you sure your INSTALLED_APPS setting is correct?
Quindi ho aggiunto "todo" al mio INSTALLED_APPS in settings.py e sono corso di python manage.py sqlclear todo
nuovo, provocando questo errore:
$ python manage.py sqlclear todo
- NameError: name 'admin' is not defined