-
Notifications
You must be signed in to change notification settings - Fork 42
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 #1518 from breatheco-de/main
Merge main into dev
- Loading branch information
Showing
28 changed files
with
500 additions
and
39 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
breathecode/admissions/migrations/0065_alter_cohortuser_educational_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,32 @@ | ||
# Generated by Django 5.1.2 on 2024-11-29 17:36 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("admissions", "0064_academy_legal_name"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="cohortuser", | ||
name="educational_status", | ||
field=models.CharField( | ||
blank=True, | ||
choices=[ | ||
("ACTIVE", "Active"), | ||
("POSTPONED", "Postponed"), | ||
("GRADUATED", "Graduated"), | ||
("SUSPENDED", "Suspended"), | ||
("DROPPED", "Dropped"), | ||
("NOT_COMPLETING", "Not Completing"), | ||
], | ||
db_index=True, | ||
default="ACTIVE", | ||
max_length=15, | ||
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
18 changes: 18 additions & 0 deletions
18
breathecode/assignments/migrations/0020_alter_userattachment_mime.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.2 on 2024-11-29 20:10 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("assignments", "0019_repositorydeletionorder_starts_transferring_at"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="userattachment", | ||
name="mime", | ||
field=models.CharField(max_length=120), | ||
), | ||
] |
33 changes: 33 additions & 0 deletions
33
...ode/assignments/migrations/0021_alter_repositorydeletionorder_repository_name_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,33 @@ | ||
# Generated by Django 5.1.4 on 2024-12-09 20:59 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("assignments", "0020_alter_userattachment_mime"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="repositorydeletionorder", | ||
name="repository_name", | ||
field=models.CharField(max_length=256), | ||
), | ||
migrations.AlterField( | ||
model_name="repositorydeletionorder", | ||
name="repository_user", | ||
field=models.CharField(max_length=256), | ||
), | ||
migrations.AlterField( | ||
model_name="repositorywhitelist", | ||
name="repository_name", | ||
field=models.CharField(max_length=256), | ||
), | ||
migrations.AlterField( | ||
model_name="repositorywhitelist", | ||
name="repository_user", | ||
field=models.CharField(max_length=256), | ||
), | ||
] |
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
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
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
24 changes: 24 additions & 0 deletions
24
breathecode/marketing/migrations/0092_coursetranslation_heading.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.1.2 on 2024-12-12 14:18 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("marketing", "0091_course_cohorts_order"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="coursetranslation", | ||
name="heading", | ||
field=models.CharField( | ||
blank=True, | ||
default=None, | ||
help_text="Heading that will be used in the landing page", | ||
max_length=160, | ||
null=True, | ||
), | ||
), | ||
] |
24 changes: 24 additions & 0 deletions
24
breathecode/marketing/migrations/0093_alter_coursetranslation_heading.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.1.2 on 2024-12-12 14:48 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("marketing", "0092_coursetranslation_heading"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="coursetranslation", | ||
name="heading", | ||
field=models.TextField( | ||
blank=True, | ||
default=None, | ||
help_text="Heading that will be used in the landing page", | ||
max_length=400, | ||
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
Oops, something went wrong.