Reset SQLite database in Django

后端 未结 5 581
孤街浪徒
孤街浪徒 2021-02-01 22:34

I am trying to refactor a Django project. I renamed a couple apps and added a new one, as well as shuffled some models around. I want to clear my database and migrations and sta

5条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-01 22:52

    For me, just

    python manage.py flush
    

    deleted old db contents, so i was able to create records anew in Django 2.1.4.

    Don't forget to create new superuser:

    python manage.py createsuperuser
    

提交回复
热议问题