Skip to content

Commit

Permalink
Ontology migration script (just for options, has no actual effect out…
Browse files Browse the repository at this point in the history
…side of admin)
  • Loading branch information
TheMadBug committed Aug 7, 2023
1 parent 105dfca commit cb29c83
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions ontology/migrations/0025_alter_ontologyterm_ontology_service.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.2 on 2023-08-07 03:41

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('ontology', '0024_alter_ontologyversion_unique_together_and_more'),
]

operations = [
migrations.AlterField(
model_name='ontologyterm',
name='ontology_service',
field=models.CharField(choices=[('MONDO', 'MONDO'), ('OMIM', 'OMIM'), ('HP', 'HP'), ('HGNC', 'HGNC'), ('DOID', 'DOID'), ('Orphanet', 'Orphanet'), ('MedGen', 'MedGen')], max_length=10),
),
]

0 comments on commit cb29c83

Please sign in to comment.