Skip to content

Commit

Permalink
add migration
Browse files Browse the repository at this point in the history
  • Loading branch information
jessiebelle committed Jan 7, 2024
1 parent 65bbf15 commit 55bb2d4
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions sponsors/migrations/0100_auto_20240107_1054.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:54

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


class Migration(migrations.Migration):

dependencies = [
('sponsors', '0099_auto_20231224_1854'),
]

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 55bb2d4

Please sign in to comment.