I totally beginner in django. I create one model which is in models folder and run python manage.py makemigrations still its show No changes detected
product.py
from django.db import models
class Product(models.Model):
name = models.CharField(max_length=50)
price = models.IntegerField(default=0)
description = models.CharField(max_length=200, default='')
image = models.ImageField(upload_to="products/")
init.py (models/init.py)
from .product import Product
Thanks in advance