1👍
Note: I decided to put this one here, because the problem wasn’t that obvious
The issue was that I didn’t have write permission on the migration file after generating it
So the editions I did, appeared on the VS Code, but weren’t saved on the file
So, the migrations applied when running manage.py migrate didn’t had the RenameField command
Running sudo chmod -R 775 <project_folder>
and sudo chown <user> -R <project_folder>
solved
Source:stackexchange.com