-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Corrected use of lhs and ref pdb molecule properties
- Loading branch information
1 parent
1f25b16
commit a3aa0c4
Showing
3 changed files
with
95 additions
and
11 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Generated by Django 3.2.23 on 2024-01-11 12:03 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
('viewer', '0028_auto_20240108_1114'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='computedmolecule', | ||
name='reference_code', | ||
field=models.TextField( | ||
blank=True, | ||
help_text='The computed reference SiteObservation (the corresponding ref_pdb value if it has one)', | ||
null=True, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name='computedmolecule', | ||
name='site_observation_code', | ||
field=models.TextField( | ||
blank=True, | ||
help_text='The LHS SiteObservation (the corresponding lhs_pdb value if it has one)', | ||
null=True, | ||
), | ||
), | ||
] |
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