I have created a Django project in my Visual Studio solution. The db.sqlite3 file was also created. There are a few classes in models.py.
class Question(models.Model):
q_id = models.IntegerField()
text = models.CharField(max_length=500)
class Option():
option_num = models.IntegerField()
text = models.CharField(max_length=1000)
When I right click on the project, there are these options - Make Migrations, Migrate & Create Superuser.
When I execute Django Make Migrations, in the terminal it says Executing manage.py makemigrations, but nothing happens.
Then I execute Migrate. It says, a command is already running.
The __init__.py isn't updated.
I also tried, executing this command in VS Terminal, but there is no response.
python manage.py makemigrations
