11 lines
345 B
Python
11 lines
345 B
Python
from django.db import models
|
|
|
|
class Story(models.Model):
|
|
title = models.CharField(max_length=200)
|
|
content = models.TextField()
|
|
author_name = models.CharField(max_length=100)
|
|
author_avatar = models.CharField(max_length=100)
|
|
created_at = models.DateTimeField(auto_now_add=True)
|
|
|
|
def __str__(self):
|
|
return self.title |