Skip to content

Commit

Permalink
remove old demographics fields
Browse files Browse the repository at this point in the history
  • Loading branch information
fredkingham committed Oct 10, 2016
1 parent 8f9ab5e commit 706c570
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions uclptb/migrations/0007_auto_20161010_1100.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 = [
('uclptb', '0006_auto_20160914_1021'),
]

operations = [
migrations.AlterField(
model_name='demographics',
name='gp_practice_code',
field=models.CharField(max_length=20, null=True, blank=True),
),
migrations.AlterField(
model_name='demographics',
name='nhs_number',
field=models.CharField(max_length=255, null=True, blank=True),
),
]

0 comments on commit 706c570

Please sign in to comment.