You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
546 B
19 lines
546 B
# Generated by Django 5.2.12 on 2026-06-16 16:32
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('library', '0002_author_and_book_author_fk'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='book',
|
|
name='author',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='books', to='library.author', verbose_name='Author'),
|
|
),
|
|
]
|