-
Notifications
You must be signed in to change notification settings - Fork 5
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 #1869 from newamericafoundation/people-grouping-di…
…gital-futures Add person grouping Digital Futures Task Force
- Loading branch information
Showing
3 changed files
with
27 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
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,23 @@ | ||
# Generated by Django 3.2.18 on 2024-06-26 17:55 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('person', '0028_auto_20240510_0610'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='personprogramrelationship', | ||
name='group', | ||
field=models.CharField(blank=True, choices=[('Fellows', 'Fellows'), ('Former Fellows', 'Former Fellows'), ('Advisors', 'Advisors'), ('Contributing Staff', 'Contributing Staff'), ('Arizona State University Fellows', 'Arizona State University Fellows'), ('Former Arizona State University Fellows', 'Former Arizona State University Fellows'), ('Digital Futures Task Force', 'Digital Futures Task Force'), ('CivicAI Advisory Trust', 'CivicAI Advisory Trust'), ('Principals', 'Principals')], help_text="Set grouping for program's our people page", max_length=50, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='personsubprogramrelationship', | ||
name='group', | ||
field=models.CharField(blank=True, choices=[('Fellows', 'Fellows'), ('Former Fellows', 'Former Fellows'), ('Advisors', 'Advisors'), ('Contributing Staff', 'Contributing Staff'), ('Arizona State University Fellows', 'Arizona State University Fellows'), ('Former Arizona State University Fellows', 'Former Arizona State University Fellows'), ('Digital Futures Task Force', 'Digital Futures Task Force'), ('CivicAI Advisory Trust', 'CivicAI Advisory Trust'), ('Principals', 'Principals')], help_text="Set grouping for subprogram's our people page", max_length=50, 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