19 lines
433 B
Python
19 lines
433 B
Python
# Generated by Django 5.0.2 on 2024-02-29 19:56
|
|
|
|
import modelcluster.fields
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('blog', '0004_author'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='blogpage',
|
|
name='authors',
|
|
field=modelcluster.fields.ParentalManyToManyField(blank=True, to='blog.author'),
|
|
),
|
|
]
|