Skip to content

Commit

Permalink
Add migration
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanWillitts committed Aug 14, 2024
1 parent 9a6c88d commit 0e969fd
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions edc_qareports/migrations/0012_alter_qareportnote_note.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.11 on 2024-08-14 15:55

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("edc_qareports", "0011_auto_20240813_0219"),
]

operations = [
migrations.AlterField(
model_name="qareportnote",
name="note",
field=models.TextField(blank=True, null=True),
),
]

0 comments on commit 0e969fd

Please sign in to comment.