-
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.
feat(backend): add organazier role to staff (#46)
* its on arian * migrations
- Loading branch information
Showing
3 changed files
with
79 additions
and
1 deletion.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
backend/backend_api/migrations/0052_alter_staff_role_alter_staff_section_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,38 @@ | ||
# Generated by Django 4.2.4 on 2023-11-30 08:10 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("backend_api", "0051_remove_workshop_add_to_calendar_link"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="staff", | ||
name="role", | ||
field=models.CharField( | ||
choices=[("Team Lead", "TL"), ("Member", "MB"), ("Coordinator", "CR")], | ||
default="Executive", | ||
max_length=100, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="staff", | ||
name="section_name", | ||
field=models.CharField( | ||
choices=[ | ||
("Coordination", "CR"), | ||
("Executive", "EXC"), | ||
("Scientific", "SCI"), | ||
("Technical", "TCH"), | ||
("Graphic", "GRP"), | ||
("Marketing", "MRK"), | ||
], | ||
default="Member", | ||
max_length=100, | ||
), | ||
), | ||
] |
38 changes: 38 additions & 0 deletions
38
backend/backend_api/migrations/0053_alter_staff_role_alter_staff_section_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,38 @@ | ||
# Generated by Django 4.2.4 on 2023-11-30 08:16 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("backend_api", "0052_alter_staff_role_alter_staff_section_name"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="staff", | ||
name="role", | ||
field=models.CharField( | ||
choices=[("Team Lead", "TL"), ("Member", "MB"), ("Organizer", "OR")], | ||
default="Executive", | ||
max_length=100, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="staff", | ||
name="section_name", | ||
field=models.CharField( | ||
choices=[ | ||
("Organizers", "OR"), | ||
("Executive", "EXC"), | ||
("Scientific", "SCI"), | ||
("Technical", "TCH"), | ||
("Graphic", "GRP"), | ||
("Marketing", "MRK"), | ||
], | ||
default="Member", | ||
max_length=100, | ||
), | ||
), | ||
] |
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