Skip to content

Commit

Permalink
Add missing migration for dailyround
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashesh3 committed Aug 2, 2023
1 parent 19b63d2 commit 29f27f5
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions care/facility/migrations/0375_alter_dailyround_resp.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Generated by Django 4.2.2 on 2023-08-01 19:32

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


class Migration(migrations.Migration):
dependencies = [
("facility", "0374_historicalpatientregistration_abha_number_and_more"),
]

operations = [
migrations.AlterField(
model_name="dailyround",
name="resp",
field=models.IntegerField(
default=None,
null=True,
validators=[
django.core.validators.MinValueValidator(0),
django.core.validators.MaxValueValidator(70),
],
),
),
]

0 comments on commit 29f27f5

Please sign in to comment.