Skip to content

Commit 5f16a80

Browse files
committed
Forgot to push migration file
1 parent a00187e commit 5f16a80

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Generated by Django 4.2.6 on 2023-10-07 21:01
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
dependencies = [
8+
("podcasts", "0007_alter_podcastepisode_guid"),
9+
]
10+
11+
operations = [
12+
migrations.AlterField(
13+
model_name="podcast",
14+
name="itunes_image_height",
15+
field=models.PositiveIntegerField(blank=True, default=None, null=True),
16+
),
17+
migrations.AlterField(
18+
model_name="podcast",
19+
name="itunes_image_width",
20+
field=models.PositiveIntegerField(blank=True, default=None, null=True),
21+
),
22+
]

0 commit comments

Comments
 (0)