-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix mkgroup command * Roll back DNASequencingProcessRecord created on new dgroup only * Add optional unique_name to MajoraArtifactProcessRecord * Attempts to prevent Foel race conditions when adding multiple DNASequencingProcess records concurrently by enforcing an optional uniqueness constraint * DNASequencingProcessRecord uses a compound run_name and library_name key * Apply Migration 150 to the affected area
- Loading branch information
1 parent
b95a6b8
commit 0507c0d
Showing
5 changed files
with
115 additions
and
23 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
18 changes: 18 additions & 0 deletions
18
majora2/migrations/0150_majoraartifactprocessrecord_unique_name.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,18 @@ | ||
# Generated by Django 2.2.27 on 2022-02-26 13:19 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('majora2', '0149_institute_credit_code_only'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='majoraartifactprocessrecord', | ||
name='unique_name', | ||
field=models.CharField(max_length=128, null=True, unique=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
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