-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
70 additions
and
43 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
39 changes: 39 additions & 0 deletions
39
club/migrations/0013_alter_club_board_group_alter_club_members_group_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,39 @@ | ||
# Generated by Django 4.2.17 on 2025-01-04 16:46 | ||
|
||
import django.db.models.deletion | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("core", "0042_invert_is_manually_manageable_20250104_1742"), | ||
("club", "0012_club_board_group_club_members_group"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="club", | ||
name="board_group", | ||
field=models.OneToOneField( | ||
on_delete=django.db.models.deletion.PROTECT, | ||
related_name="club_board", | ||
to="core.group", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="club", | ||
name="members_group", | ||
field=models.OneToOneField( | ||
on_delete=django.db.models.deletion.PROTECT, | ||
related_name="club", | ||
to="core.group", | ||
), | ||
), | ||
migrations.AddConstraint( | ||
model_name="membership", | ||
constraint=models.CheckConstraint( | ||
check=models.Q(("end_date__gte", models.F("start_date"))), | ||
name="end_after_start", | ||
), | ||
), | ||
] |
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
27 changes: 27 additions & 0 deletions
27
core/migrations/0042_invert_is_manually_manageable_20250104_1742.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,27 @@ | ||
# Generated by Django 4.2.17 on 2025-01-04 16:42 | ||
|
||
from django.db import migrations | ||
from django.db.migrations.state import StateApps | ||
from django.db.models import F | ||
|
||
|
||
def invert_is_manually_manageable(apps: StateApps, schema_editor): | ||
"""Invert `is_manually_manageable`. | ||
This field is a renaming of `is_meta`. | ||
However, the meaning has been inverted : the groups | ||
which were meta are not manually manageable and vice versa. | ||
Thus, the value must be inverted. | ||
""" | ||
Group = apps.get_model("core", "Group") | ||
Group.objects.all().update(is_manually_manageable=~F("is_manually_manageable")) | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [("core", "0041_delete_metagroup_alter_group_options_and_more")] | ||
|
||
operations = [ | ||
migrations.RunPython( | ||
invert_is_manually_manageable, reverse_code=invert_is_manually_manageable | ||
), | ||
] |