Skip to content
Snippets Groups Projects
Commit 57dd2887 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

length of the custom study name must be longer from the beginning

parent 64fd232a
No related branches found
No related tags found
1 merge request!290Frontend dependencies moved to npm
......@@ -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)),
......
# 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),
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment