34 lines
856 B
Python
34 lines
856 B
Python
|
# Generated by Django 4.2.11 on 2024-04-24 04:03
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('podjango', '0002_alter_cast_tags'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='Podcast',
|
||
|
fields=[
|
||
|
(
|
||
|
'id',
|
||
|
models.AutoField(
|
||
|
auto_created=True,
|
||
|
primary_key=True,
|
||
|
serialize=False,
|
||
|
verbose_name='ID',
|
||
|
),
|
||
|
),
|
||
|
('title', models.CharField(max_length=50)),
|
||
|
],
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='cast',
|
||
|
name='podcast',
|
||
|
field=models.ManyToManyField(to='podjango.podcast'),
|
||
|
),
|
||
|
]
|