Skip to content

Commit

Permalink
new migration file added
Browse files Browse the repository at this point in the history
  • Loading branch information
jessiebelle committed Jan 7, 2024
1 parent a256113 commit dd8943c
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions sponsors/migrations/0099_auto_20240107_1038.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Generated by Django 2.2.24 on 2024-01-07 10:38

from django.db import migrations, models
import django_countries.fields


class Migration(migrations.Migration):

dependencies = [
('sponsors', '0098_auto_20231219_1910'),
]

operations = [
migrations.AddField(
model_name='sponsor',
name='country_of_incorporation',
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',
name='state_of_incorporation',
field=models.CharField(blank=True, default='', max_length=64, null=True, verbose_name='US only: State of incorporation (If different)'),
),
migrations.AlterField(
model_name='sponsor',
name='country',
field=django_countries.fields.CountryField(default='', help_text='For mailing/contact purposes', max_length=2),
),
]

0 comments on commit dd8943c

Please sign in to comment.