Skip to content

Commit

Permalink
fixup! Updates for Django 4 deprecations.
Browse files Browse the repository at this point in the history
  • Loading branch information
dracos committed Nov 19, 2023
1 parent c381450 commit 6e7a703
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions productions/migrations/0005_alter_part_cast.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.2.23 on 2023-11-19 18:44

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('productions', '0004_auto_20161227_1833'),
]

operations = [
migrations.AlterField(
model_name='part',
name='cast',
field=models.BooleanField(blank=True, help_text='Crew includes all non-cast, from director to musicians to producers', null=True, verbose_name='Cast/Crew'),
),
]

0 comments on commit 6e7a703

Please sign in to comment.