I've just started working with Django, and when setting up my models and db I picked a name which I would like to change now. Is it OK to just edit models.py
(rename the class), then run makemigrations
and migrate
on it? I have a table set up in the db (SQLite), but no entries yet.
I'm new to database migration too. Does this cover what I want to do?
Thanks.