#from django.db import models
from djongo import models

class Introduction(models.Model):
    _id = models.ObjectIdField()
    introduction_text = models.TextField(max_length=3000)
    date_created = models.DateTimeField(auto_now_add=True, blank=True)
    date_updated = models.DateTimeField(auto_now=True, blank=True)

    
    def __str__(self):
        return str(self.introduction_text)