Skip to content

Commit

Permalink
GH-75: Hotfix: Add missing (small) db migration
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleyboar committed Aug 24, 2021
1 parent 2689b8b commit bbef103
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 2.2.16 on 2021-08-24 13:03

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('taccsite_data_list', '0001_initial'),
]

operations = [
migrations.AlterField(
model_name='taccsitedatalistitem',
name='key',
field=models.CharField(blank=True, help_text='A label for the data value.', max_length=50, verbose_name='Label'),
),
]

0 comments on commit bbef103

Please sign in to comment.