Skip to content

Commit 07b346c

Browse files
author
Kátia Nakamura
committed
sponsors: add missing migration
1 parent 95e3a94 commit 07b346c

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Generated by Django 2.0.5 on 2018-08-11 19:03
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('sponsors', '0007_sponsoring_level'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='sponsoring',
15+
name='organization',
16+
field=models.CharField(blank=True, max_length=256, null=True),
17+
),
18+
migrations.AlterField(
19+
model_name='sponsoring',
20+
name='organization_type',
21+
field=models.IntegerField(choices=[(1, 'Profit Corporation'), (2, 'Foundation / Non profit')], default=1),
22+
),
23+
]

0 commit comments

Comments
 (0)