-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add internal comment fields to jasmin_services grants and requests.
- Loading branch information
Showing
3 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
jasmin_services/migrations/0025_add_internal_comment_fields.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,24 @@ | ||
# Generated by Django 5.0.7 on 2024-07-29 14:40 | ||
|
||
import django_countries.fields | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("jasmin_services", "0024_grant_revoked_at_alter_behaviour_polymorphic_ctype"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="grant", | ||
name="internal_comment", | ||
field=models.TextField(blank=True, verbose_name="Internal nodes"), | ||
), | ||
migrations.AddField( | ||
model_name="request", | ||
name="internal_comment", | ||
field=models.TextField(blank=True, verbose_name="Internal nodes"), | ||
), | ||
] |
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