Skip to content

Commit

Permalink
fix migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
jessiebelle committed Dec 24, 2023
1 parent dc5ff5b commit 7f73df0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.2.24 on 2023-12-24 15:39
# Generated by Django 2.2.24 on 2023-12-24 16:15

from django.db import migrations, models
import django_countries.fields
Expand All @@ -14,7 +14,7 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='sponsor',
name='country_of_incorporation',
field=django_countries.fields.CountryField(blank=True, max_length=2, null=True, verbose_name='Country of incorporation (If different)'),
field=django_countries.fields.CountryField(blank=True, help_text='For contractual purposes', max_length=2, null=True, verbose_name='Country of incorporation (If different)'),
),
migrations.AddField(
model_name='sponsor',
Expand Down

0 comments on commit 7f73df0

Please sign in to comment.