forked from rapidpro/rapidpro
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add session and sprint UUID fields to fires
- Loading branch information
1 parent
a421207
commit 09ccaf6
Showing
2 changed files
with
35 additions
and
1 deletion.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
temba/contacts/migrations/0200_contactfire_session_uuid_contactfire_sprint_uuid_and_more.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,28 @@ | ||
# Generated by Django 5.1.4 on 2025-01-29 18:04 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("contacts", "0199_contactfire"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="contactfire", | ||
name="session_uuid", | ||
field=models.UUIDField(null=True), | ||
), | ||
migrations.AddField( | ||
model_name="contactfire", | ||
name="sprint_uuid", | ||
field=models.UUIDField(null=True), | ||
), | ||
migrations.AlterField( | ||
model_name="contactfire", | ||
name="extra", | ||
field=models.JSONField(null=True), | ||
), | ||
] |
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