Skip to content

Commit

Permalink
Forgot to push migration file
Browse files Browse the repository at this point in the history
  • Loading branch information
Apreche committed Oct 7, 2023
1 parent a00187e commit 5f16a80
Showing 1 changed file with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Generated by Django 4.2.6 on 2023-10-07 21:01

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("podcasts", "0007_alter_podcastepisode_guid"),
]

operations = [
migrations.AlterField(
model_name="podcast",
name="itunes_image_height",
field=models.PositiveIntegerField(blank=True, default=None, null=True),
),
migrations.AlterField(
model_name="podcast",
name="itunes_image_width",
field=models.PositiveIntegerField(blank=True, default=None, null=True),
),
]

0 comments on commit 5f16a80

Please sign in to comment.