How to fix-no such table: main.auth_user__old

后端 未结 8 1324
北恋
北恋 2021-01-23 08:02

Can someone give a detailed explanation on how to fix the ERROR: no such table: main.auth_user__old

It arises in my Django application when I am trying to a

8条回答
  •  花落未央
    2021-01-23 08:20

    When I used the python shell to add to database instead of the UI, error did not show anymore

    $ python manage.py shell
    

    In the python shell

    from AppName.models import Product
    Product.objects.create(title='Newer', price=239.99, summary='awesome')
    

提交回复
热议问题