Files
djangocms/product/models.py
2024-12-13 08:31:39 +07:00

6 lines
245 B
Python

from django.db import models
# Create your models here.
class productPageSEO(models.Model):
meta_title = models.CharField(max_length=500, blank=True, null=True)
meta_description = models.CharField(max_length=1000, blank=True, null=True)