-
-
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.
Index status on candidates and organizations
- Loading branch information
1 parent
50f2629
commit 1a05bf2
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
40 changes: 40 additions & 0 deletions
40
backend/hub/migrations/0053_alter_candidate_status_alter_organization_status.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,40 @@ | ||
# Generated by Django 4.2.13 on 2024-07-09 11:55 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("hub", "0052_alter_organization_logo"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="candidate", | ||
name="status", | ||
field=models.CharField( | ||
choices=[("pending", "Pending"), ("accepted", "Accepted"), ("rejected", "Rejected")], | ||
db_index=True, | ||
default="pending", | ||
max_length=30, | ||
verbose_name="Status", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="organization", | ||
name="status", | ||
field=models.CharField( | ||
choices=[ | ||
("draft", "Draft"), | ||
("pending", "Pending approval"), | ||
("accepted", "Accepted"), | ||
("rejected", "Rejected"), | ||
], | ||
db_index=True, | ||
default="draft", | ||
max_length=30, | ||
verbose_name="Status", | ||
), | ||
), | ||
] |
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