Skip to content

Commit

Permalink
adding migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
codiebeulaine committed Feb 2, 2016
1 parent 44e9c35 commit bbb0eca
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions malaria24/ona/migrations/0022_auto_20160202_1403.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('ona', '0021_districtdigest'),
]

operations = [
migrations.AlterField(
model_name='reportedcase',
name='case_number',
field=models.CharField(max_length=255, null=True, blank=True),
),
migrations.AlterField(
model_name='reportedcase',
name='landmark_description',
field=models.CharField(max_length=255, null=True, blank=True),
),
]

0 comments on commit bbb0eca

Please sign in to comment.