-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #319 from jbernal0019/master
Add 'StudyDate' and 'ProtocolName' fields to 'PACSFile' model
- Loading branch information
Showing
6 changed files
with
56 additions
and
8 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
chris_backend/pacsfiles/migrations/0004_auto_20210409_1532.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,36 @@ | ||
# Generated by Django 2.2.12 on 2021-04-09 19:32 | ||
|
||
import datetime | ||
from django.db import migrations, models | ||
from django.utils.timezone import utc | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('pacsfiles', '0003_pacsfile_modality'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='pacsfile', | ||
name='ProtocolName', | ||
field=models.CharField(blank=True, max_length=64), | ||
), | ||
migrations.AddField( | ||
model_name='pacsfile', | ||
name='StudyDate', | ||
field=models.DateField(db_index=True, default=datetime.datetime(2021, 4, 9, 19, 32, 14, 90971, tzinfo=utc)), | ||
preserve_default=False, | ||
), | ||
migrations.AlterField( | ||
model_name='pacsfile', | ||
name='SeriesInstanceUID', | ||
field=models.CharField(max_length=150), | ||
), | ||
migrations.AlterField( | ||
model_name='pacsfile', | ||
name='StudyInstanceUID', | ||
field=models.CharField(max_length=150), | ||
), | ||
] |
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
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
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
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
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