|
@@ -0,0 +1,18 @@
|
|
|
+# Generated by Django 4.1.7 on 2023-11-21 23:25
|
|
|
+
|
|
|
+from django.db import migrations, models
|
|
|
+
|
|
|
+
|
|
|
+class Migration(migrations.Migration):
|
|
|
+
|
|
|
+ dependencies = [
|
|
|
+ ("books", "0018_author_locg_slug"),
|
|
|
+ ]
|
|
|
+
|
|
|
+ operations = [
|
|
|
+ migrations.AlterField(
|
|
|
+ model_name="book",
|
|
|
+ name="authors",
|
|
|
+ field=models.ManyToManyField(blank=True, to="books.author"),
|
|
|
+ ),
|
|
|
+ ]
|