TianyiMoe/backend/randpic/models.py

11 lines
299 B
Python
Raw Normal View History

2024-04-27 07:50:22 +00:00
from django.db import models
# Create your models here.
2024-04-29 06:12:41 +00:00
class Picture(models.Model):
name = models.CharField(max_length=100)
description = models.TextField()
author = models.CharField(max_length=100)
original_url = models.URLField()
def __str__(self):
return self.title