Skip to content

Commit

Permalink
merge migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
UdaySagar-Git committed Oct 25, 2024
1 parent 83d571b commit 975aba2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 20 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Generated by Django 5.1.1 on 2024-10-01 21:58
# Generated by Django 5.1.1 on 2024-10-25 09:57

import django.db.models.deletion
from django.db import migrations, models


Expand All @@ -10,6 +11,11 @@ class Migration(migrations.Migration):
]

operations = [
migrations.AddField(
model_name='patientnotes',
name='root_note',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='child_notes', to='facility.patientnotes'),
),
migrations.AlterField(
model_name='fileupload',
name='file_type',
Expand Down
19 changes: 0 additions & 19 deletions care/facility/migrations/0467_patientnotes_root_note.py

This file was deleted.

0 comments on commit 975aba2

Please sign in to comment.