-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d8b23c6
commit b49cec2
Showing
8 changed files
with
223 additions
and
3 deletions.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
unit-backend/api/migrations/0054_step_priority_step_status_alter_project_avatar.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,44 @@ | ||
# Generated by Django 5.0.4 on 2024-09-30 02:53 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("api", "0053_remove_api_source"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="step", | ||
name="priority", | ||
field=models.CharField( | ||
choices=[(0, "P0"), (1, "P1"), (2, "P2"), (3, "P3"), (4, "P4")], | ||
default=0, | ||
max_length=50, | ||
verbose_name="Step Priority", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="step", | ||
name="status", | ||
field=models.CharField( | ||
choices=[(0, "Debugging"), (1, "Obsoleted"), (2, "Normal")], | ||
default=0, | ||
max_length=50, | ||
verbose_name="Step Status", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="project", | ||
name="avatar", | ||
field=models.ImageField( | ||
blank=True, | ||
default="avatar/default.png", | ||
null=True, | ||
upload_to="C:\\Users\\86135\\Desktop\\EasyPost\\unit-backend\\api\\templates\\media", | ||
verbose_name="Project Avatar", | ||
), | ||
), | ||
] |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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