-
Notifications
You must be signed in to change notification settings - Fork 331
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6c6c9c3
commit 9b6c03c
Showing
3 changed files
with
40 additions
and
4 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
care/emr/migrations/0057_merge_0046_merge_20241227_1152_0056_fileupload.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Generated by Django 5.1.3 on 2024-12-29 07:59 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('emr', '0046_merge_20241227_1152'), | ||
('emr', '0056_fileupload'), | ||
] | ||
|
||
operations = [ | ||
] |
24 changes: 24 additions & 0 deletions
24
care/emr/migrations/0058_alter_medicationadministration_encounter_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Generated by Django 5.1.3 on 2024-12-29 08:02 | ||
|
||
import django.db.models.deletion | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('emr', '0057_merge_0046_merge_20241227_1152_0056_fileupload'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='medicationadministration', | ||
name='encounter', | ||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='emr.encounter'), | ||
), | ||
migrations.AlterField( | ||
model_name='medicationadministration', | ||
name='patient', | ||
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='emr.patient'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters