Spaces:
Running
on
Zero
Running
on
Zero
File size: 188 Bytes
1f074d8 |
1 2 3 4 5 6 |
from django.db import models
class Book(models.Model):
title = models.CharField(max_length=200)
author = models.CharField(max_length=100)
publication_date = models.DateField() |