forked from breatheco-de/apiv2
-
Notifications
You must be signed in to change notification settings - Fork 0
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 breatheco-de#1382 from gustavomm19/subscription-co…
…nversion-info add session_info to plan financings
- Loading branch information
Showing
11 changed files
with
694 additions
and
58 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
29 changes: 29 additions & 0 deletions
29
breathecode/payments/migrations/0050_planfinancing_conversion_info_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,29 @@ | ||
# Generated by Django 5.0.6 on 2024-06-27 00:05 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('payments', '0049_paymentmethod_is_credit_card'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='planfinancing', | ||
name='conversion_info', | ||
field=models.JSONField(blank=True, | ||
default=None, | ||
help_text='UTMs and other conversion information.', | ||
null=True), | ||
), | ||
migrations.AddField( | ||
model_name='subscription', | ||
name='conversion_info', | ||
field=models.JSONField(blank=True, | ||
default=None, | ||
help_text='UTMs and other conversion information.', | ||
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
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
Oops, something went wrong.