Skip to content

Commit

Permalink
[BugFix] Fix migrations (#4192)
Browse files Browse the repository at this point in the history
  • Loading branch information
gchhablani authored Oct 11, 2023
1 parent 192b1c5 commit 77caa73
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 2.2.20 on 2023-10-11 00:31

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('challenges', '0105_challenge_sponsors_prizes'),
]

operations = [
migrations.AlterField(
model_name='challenge',
name='worker_image_url',
field=models.CharField(blank=True, default='', max_length=200, null=True),
),
]

0 comments on commit 77caa73

Please sign in to comment.