-
Notifications
You must be signed in to change notification settings - Fork 5
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 #569 from Gary-Community-Ventures/dev
Release 10/2/2024
- Loading branch information
Showing
76 changed files
with
1,440 additions
and
1,067 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# Generated by Django 4.2.14 on 2024-09-24 16:41 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("translations", "0004_translation_no_auto"), | ||
("programs", "0087_remove_program_warning"), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name="TranslationOverride", | ||
fields=[ | ||
( | ||
"id", | ||
models.BigAutoField( | ||
auto_created=True, | ||
primary_key=True, | ||
serialize=False, | ||
verbose_name="ID", | ||
), | ||
), | ||
("calculator", models.CharField(max_length=120)), | ||
( | ||
"external_name", | ||
models.CharField(blank=True, max_length=120, null=True, unique=True), | ||
), | ||
("field", models.CharField(max_length=64)), | ||
("active", models.BooleanField(blank=True, default=True)), | ||
( | ||
"counties", | ||
models.ManyToManyField(related_name="translation_overrides", to="programs.county"), | ||
), | ||
( | ||
"program", | ||
models.ForeignKey( | ||
on_delete=django.db.models.deletion.CASCADE, | ||
related_name="translation_overrides", | ||
to="programs.program", | ||
), | ||
), | ||
( | ||
"translation", | ||
models.ForeignKey( | ||
on_delete=django.db.models.deletion.PROTECT, | ||
related_name="translation_overrides", | ||
to="translations.translation", | ||
), | ||
), | ||
], | ||
), | ||
] |
29 changes: 29 additions & 0 deletions
29
programs/migrations/0089_alter_translationoverride_counties_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 4.2.14 on 2024-09-30 20:42 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("programs", "0088_translationoverride"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="translationoverride", | ||
name="counties", | ||
field=models.ManyToManyField(blank=True, related_name="translation_overrides", to="programs.county"), | ||
), | ||
migrations.AlterField( | ||
model_name="translationoverride", | ||
name="program", | ||
field=models.ForeignKey( | ||
null=True, | ||
on_delete=django.db.models.deletion.CASCADE, | ||
related_name="translation_overrides", | ||
to="programs.program", | ||
), | ||
), | ||
] |
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.