1👍
Migrations are a cumulative record. The initial migration describes the state of your database when you initially created it. Subsequent changes are described by further migration files, each of which takes your database to the state at the time that migration was created.
So when you run makemigrations
, a migration 0002 will be created which will include the code to remove your field.
Source:stackexchange.com