I want to delete one field from my model; as per the docs I go ahead with the removal in models.py as well as all references to that field in the code, and then run migrations/migrate, all without errors. But it seems the database part of the deletion does not happen, the column is still there in postgres. And all the pages that rely on that model endup with a field missing error.
ProgrammingError at /ouvrages/165/1
column website_composant.prix_vente does not exist
LINE 1: ...cout_unitaire", "website_composant"."cout_total", "website_c...
For now I ended up adding the field againg, and everything works fine, but I'd like to understand clearly how to get through with field deletion, does anyone have a clue ?