saving changes after migrations

parent d259c945
# Generated by Django 4.1.7 on 2023-03-27 15:29
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("bookshelf", "0001_initial"),
]
operations = [
migrations.AlterField(
model_name="author",
name="bio",
field=models.TextField(max_length=700),
),
migrations.AlterField(
model_name="book",
name="blurb",
field=models.TextField(max_length=1000),
),
migrations.AlterField(
model_name="book",
name="year_published",
field=models.IntegerField(default=0),
),
]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment