Skip to content

Commit

Permalink
feat: toward #17 and #21, survey models, etc
Browse files Browse the repository at this point in the history
  • Loading branch information
erictheise committed May 17, 2020
1 parent 9d8c0a9 commit e984a12
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions mdi/migrations/0067_auto_20200517_0503.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.0.3 on 2020-05-17 05:03

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('mdi', '0066_auto_20200511_1814'),
]

operations = [
migrations.AlterField(
model_name='organization',
name='code_availability',
field=models.CharField(blank=True, choices=[(0, 'Yes'), (1, 'Partially'), (2, 'No')], max_length=9),
),
]

0 comments on commit e984a12

Please sign in to comment.