0

I have already many models in my application. I have already used migrations in my project.

But when I want to remove a field from a model, the makemigration command show me :

Unknown field(s) (field) specified for Model

Where (fields) is equal to the field's name and Model is the model's name ?

Do you have any solution to resolve this issue ?

Samuel Dauzon
  • 10,744
  • 13
  • 61
  • 94

1 Answers1

0

You may try modifying auto_now and auto_now_add with default = 'xxx', then the field can be called

liu
  • 37
  • 5