36449-vm/core/models.py
Flatlogic Bot f1c5cc6862 version1
2025-11-28 22:13:49 +00:00

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