-
-
Notifications
You must be signed in to change notification settings - Fork 65
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 #701 from nearbeach/develop
Develop
- Loading branch information
Showing
36 changed files
with
503 additions
and
240 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
32 changes: 32 additions & 0 deletions
32
NearBeach/migrations/0034_alter_tagassignment_object_enum.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,32 @@ | ||
# Generated by Django 5.0.7 on 2024-10-25 08:00 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("NearBeach", "0033_permissionset_organisation_note"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="tagassignment", | ||
name="object_enum", | ||
field=models.CharField( | ||
choices=[ | ||
("requirement", "Requirement"), | ||
("requirement_item", "Requirement Item"), | ||
("project", "Project"), | ||
("task", "Task"), | ||
("kanban_board", "Kanban Board"), | ||
("kanban_card", "Kanban Card"), | ||
("request_for_change", "Request for Change"), | ||
("customer", "Customer"), | ||
("organisation", "Organisation"), | ||
], | ||
default="requirement", | ||
max_length=40, | ||
), | ||
), | ||
] |
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.
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Oops, something went wrong.