TianyiMoe/backend/randpic/models.py

11 lines
330 B
Python

from django.db import models
# Create your models here.
class Picture(models.Model):
name = models.CharField(max_length=100)
description = models.TextField()
author = models.CharField(max_length=100)
author_url=models.URLField()
original_url = models.URLField()
def __str__(self):
return self.name