Skip to content

Commit

Permalink
Adds the migration that changes the diagnosis details field to text f…
Browse files Browse the repository at this point in the history
…ield
  • Loading branch information
fredkingham committed Jun 17, 2019
1 parent 2dfcc88 commit cbdea37
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions elcid/migrations/0032_auto_20190617_2132.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 2.0.13 on 2019-06-17 21:32

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('elcid', '0031_auto_20190603_0917'),
]

operations = [
migrations.AlterField(
model_name='diagnosis',
name='details',
field=models.TextField(blank=True),
),
]

0 comments on commit cbdea37

Please sign in to comment.