Skip to content
Snippets Groups Projects
Commit d4fa106e authored by Carlos Vega's avatar Carlos Vega
Browse files

ghost migration after pylint. no real changes were made

parent 370f5a2c
No related branches found
No related tags found
1 merge request!445Support for Python 3.11
# Generated by Django 3.2.22 on 2023-10-24 12:38
import django.core.files.storage
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('web', '0211_subjectexport_data'),
]
operations = [
migrations.AlterField(
model_name='study',
name='nd_number_study_subject_regex',
field=models.CharField(default='^ND\\d{4}$', help_text='Defines the regex to check the ID used for each study subject. Keep in mind that this regex should be valid for all previous study subjects in the database.', max_length=255, verbose_name='Study Subject ND Number Regex'),
),
migrations.AlterField(
model_name='studysubject',
name='referral_letter',
field=models.FileField(blank=True, null=True, storage=django.core.files.storage.FileSystemStorage(location='/tmp/upload'), upload_to='referral_letters', verbose_name='Referral letter'),
),
]
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