Add new fields to page to use it better

This commit is contained in:
2023-03-26 12:30:06 -04:00
parent 5c9a877a9a
commit bcd35842cd
3 changed files with 118 additions and 0 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 4.1.7 on 2023-03-26 02:34
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("books", "0011_book_genre"),
]
operations = [
migrations.AddField(
model_name="page",
name="end_time",
field=models.DateTimeField(blank=True, null=True),
),
]