-
Notifications
You must be signed in to change notification settings - Fork 0
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 #309 from IFB-ElixirFr/add-coord-team
add Coordinating platform
- Loading branch information
Showing
2 changed files
with
32 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Generated by Django 3.2.12 on 2024-04-18 15:19 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('ifbcat_api', '0189_auto_20221129_1354'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='team', | ||
name='ifbMembership', | ||
field=models.CharField( | ||
choices=[ | ||
('Associated Team', 'Associated Team'), | ||
('Contributing platform', 'Contributing platform'), | ||
('Coordinating platform', 'Coordinating platform'), | ||
('Member platform', 'Member platform'), | ||
('None', 'None'), | ||
], | ||
default='None', | ||
help_text='Type of membership the bioinformatics team has to IFB.', | ||
max_length=255, | ||
), | ||
), | ||
] |
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