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 branch 'development' of https://github.com/breatheco-de/apiv2 i…
…nto development
- Loading branch information
Showing
48 changed files
with
1,763 additions
and
621 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
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.
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
29 changes: 29 additions & 0 deletions
29
breathecode/marketing/migrations/0087_alter_formentry_storage_status.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.1.1 on 2024-09-24 16:29 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("marketing", "0086_coursetranslation_landing_variables"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="formentry", | ||
name="storage_status", | ||
field=models.CharField( | ||
choices=[ | ||
("PENDING", "Pending"), | ||
("PERSISTED", "Persisted"), | ||
("REJECTED", "Rejected"), | ||
("DUPLICATED", "Duplicated"), | ||
("ERROR", "Error"), | ||
], | ||
default="PENDING", | ||
help_text="MANUALLY_PERSISTED means it was copy pasted into active campaign", | ||
max_length=15, | ||
), | ||
), | ||
] |
29 changes: 29 additions & 0 deletions
29
breathecode/marketing/migrations/0088_alter_formentry_storage_status.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.1.1 on 2024-09-24 21:17 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("marketing", "0087_alter_formentry_storage_status"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="formentry", | ||
name="storage_status", | ||
field=models.CharField( | ||
choices=[ | ||
("PENDING", "Pending"), | ||
("PERSISTED", "Persisted"), | ||
("REJECTED", "Rejected"), | ||
("DUPLICATED", "Duplicated"), | ||
("ERROR", "Error"), | ||
], | ||
default="PENDING", | ||
help_text="MANUALLY_PERSISTED means it was copy pasted into active campaign", | ||
max_length=20, | ||
), | ||
), | ||
] |
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.