8 lines
230 B
Python
8 lines
230 B
Python
from django.db import models
|
|
|
|
class PromptRequest(models.Model):
|
|
subject_area = models.CharField(max_length=255)
|
|
created_at = models.DateTimeField(auto_now_add=True)
|
|
|
|
def __str__(self):
|
|
return self.subject_area |