ProgrammingError at /admin/order/order/ relation “order_order” does not exist LINE 1: SELECT COUNT(*) AS “__count” FROM “order_order”
问题 I'm working with django rest framework and I have a app named order. I wanted to change my order logic and I changed order app's models. but when I want to open order and order_item models in admin panel I have this error: ProgrammingError at /admin/order/order/ relation "order_order" does not exist LINE 1: SELECT COUNT(*) AS "__count" FROM "order_order" and also when i run migrate command it doesn't migrate well and doesn't create the order and OrderItem tabels in the database. I'm using