Skip to content

Commit

Permalink
Add missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanWillitts committed Oct 10, 2023
1 parent 1e4c3c6 commit c250fb2
Showing 1 changed file with 39 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Generated by Django 4.2.5 on 2023-10-10 14:18

import django.core.validators
from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("edc_data_manager", "0030_alter_datadictionary_device_created_and_more"),
]

operations = [
migrations.AlterField(
model_name="dataquery",
name="visit_code_sequence",
field=models.IntegerField(
blank=True,
null=True,
validators=[
django.core.validators.MinValueValidator(0),
django.core.validators.MaxValueValidator(25),
],
verbose_name="Visit code sequence",
),
),
migrations.AlterField(
model_name="historicaldataquery",
name="visit_code_sequence",
field=models.IntegerField(
blank=True,
null=True,
validators=[
django.core.validators.MinValueValidator(0),
django.core.validators.MaxValueValidator(25),
],
verbose_name="Visit code sequence",
),
),
]

0 comments on commit c250fb2

Please sign in to comment.