diff --git a/smash/web/migrations/0177_customstudysubjectfield_customstudysubjectvalue.py b/smash/web/migrations/0177_customstudysubjectfield_customstudysubjectvalue.py index 25e16fa4fc684c640e69cfe713f22b31f1c26229..2e7a1dcad99d0e9f6c8983d3e350ccc2fb294531 100644 --- a/smash/web/migrations/0177_customstudysubjectfield_customstudysubjectvalue.py +++ b/smash/web/migrations/0177_customstudysubjectfield_customstudysubjectvalue.py @@ -15,7 +15,7 @@ class Migration(migrations.Migration): name='CustomStudySubjectField', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('name', models.CharField(max_length=20)), + ('name', models.CharField(max_length=64)), ('type', models.CharField(choices=[('TEXT', 'Text'), ('BOOL', 'Boolean (True/False)'), ('INTEGER', 'Integer'), ('DOUBLE', 'Double (real number)'), ('DATE', 'Date'), ('SELECT_LIST', 'Select list')], max_length=20)), ('possible_values', models.CharField(blank=True, default='', max_length=1024, null=True)), ('default_value', models.CharField(blank=True, max_length=20, null=True)), diff --git a/smash/web/migrations/0192_auto_20201207_0956.py b/smash/web/migrations/0192_auto_20201207_0956.py deleted file mode 100644 index 63b5cd45d2fdd440f26f0dc43208c9ad7037c015..0000000000000000000000000000000000000000 --- a/smash/web/migrations/0192_auto_20201207_0956.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 3.1.3 on 2020-12-07 09:56 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('web', '0191_auto_20201201_1033'), - ] - - operations = [ - migrations.AlterField( - model_name='customstudysubjectfield', - name='name', - field=models.CharField(max_length=64), - ), - ]