papiez_ipsum/papiezator/models.py

9 lines
272 B
Python

from django.db import models
class Pope(models.Model):
pope_name = models.CharField(max_length=200)
aspect_ratio = models.DecimalField(max_digits=3, decimal_places=2)
width = models.IntegerField()
height = models.IntegerField()
# Create your models here.