6 lines
219 B
Python
6 lines
219 B
Python
from django.db import models
|
|
|
|
class servicePageSEO(models.Model):
|
|
meta_title = models.CharField(max_length=500, blank=True, null=True)
|
|
meta_description = models.CharField(max_length=1000, blank=True, null=True)
|