initial
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
from django.db import models
|
||||
|
||||
class projectPageSEO(models.Model):
|
||||
meta_title = models.CharField(max_length=500, blank=True, null=True)
|
||||
meta_description = models.CharField(max_length=1000, blank=True, null=True)
|
||||
|
||||
def __str__(self):
|
||||
return self.meta_title
|
||||
Reference in New Issue
Block a user