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.
Merge pull request #5832 from nyaruka/contact_fire_session_and_sprint…
…_uuids Add session and sprint UUID fields to fires
- Loading branch information
Showing
4 changed files
with
54 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
18 changes: 18 additions & 0 deletions
18
temba/flows/migrations/0364_flowsession_last_sprint_uuid.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,18 @@ | ||
# Generated by Django 5.1.4 on 2025-01-29 18:14 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("flows", "0363_alter_flowsession_status"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="flowsession", | ||
name="last_sprint_uuid", | ||
field=models.UUIDField(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