Skip to content

Commit

Permalink
remove obsolete RunPython operations
Browse files Browse the repository at this point in the history
  • Loading branch information
imperosol committed Dec 8, 2024
1 parent 35d4ccb commit 3fcc460
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 72 deletions.
20 changes: 0 additions & 20 deletions club/migrations/0010_auto_20170912_2028.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,6 @@
import django.db.models.deletion
from django.db import migrations, models

from club.models import Club
from core.operations import PsqlRunOnly


def generate_club_pages(apps, schema_editor):
def recursive_generate_club_page(club):
club.make_page()
for child in Club.objects.filter(parent=club).all():
recursive_generate_club_page(child)

for club in Club.objects.filter(parent=None).all():
recursive_generate_club_page(club)


class Migration(migrations.Migration):
dependencies = [("core", "0024_auto_20170906_1317"), ("club", "0010_club_logo")]
Expand Down Expand Up @@ -48,11 +35,4 @@ class Migration(migrations.Migration):
null=True,
),
),
PsqlRunOnly(
"SET CONSTRAINTS ALL IMMEDIATE", reverse_sql=migrations.RunSQL.noop
),
migrations.RunPython(generate_club_pages),
PsqlRunOnly(
migrations.RunSQL.noop, reverse_sql="SET CONSTRAINTS ALL IMMEDIATE"
),
]
33 changes: 0 additions & 33 deletions counter/migrations/0013_customer_recorded_products.py
Original file line number Diff line number Diff line change
@@ -1,38 +1,6 @@
from __future__ import unicode_literals

from django.conf import settings
from django.db import migrations, models
from django.utils.translation import gettext_lazy as _

from core.models import User
from counter.models import Counter, Customer, Product, Selling


def balance_ecocups(apps, schema_editor):
for customer in Customer.objects.all():
customer.recorded_products = 0
for selling in customer.buyings.filter(
product__id__in=[settings.SITH_ECOCUP_CONS, settings.SITH_ECOCUP_DECO]
).all():
if selling.product.is_record_product:
customer.recorded_products += selling.quantity
elif selling.product.is_unrecord_product:
customer.recorded_products -= selling.quantity
if customer.recorded_products < -settings.SITH_ECOCUP_LIMIT:
qt = -(customer.recorded_products + settings.SITH_ECOCUP_LIMIT)
cons = Product.objects.get(id=settings.SITH_ECOCUP_CONS)
Selling(
label=_("Ecocup regularization"),
product=cons,
unit_price=cons.selling_price,
club=cons.club,
counter=Counter.objects.filter(name="Foyer").first(),
quantity=qt,
seller=User.objects.get(id=0),
customer=customer,
).save(allow_negative=True)
customer.recorded_products += qt
customer.save()


class Migration(migrations.Migration):
Expand All @@ -44,5 +12,4 @@ class Migration(migrations.Migration):
name="recorded_products",
field=models.IntegerField(verbose_name="recorded items", default=0),
),
migrations.RunPython(balance_ecocups),
]
23 changes: 4 additions & 19 deletions pedagogy/migrations/0002_auto_20190827_2251.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,11 @@

from django.db import migrations

from core.models import User


def remove_multiples_comments_from_same_user(apps, schema_editor):
for user in User.objects.exclude(uv_comments=None).prefetch_related("uv_comments"):
for uv in user.uv_comments.values("uv").distinct():
last = (
user.uv_comments.filter(uv__id=uv["uv"])
.order_by("-publish_date")
.first()
)
user.uv_comments.filter(uv__id=uv["uv"]).exclude(pk=last.pk).delete()


class Migration(migrations.Migration):
dependencies = [("pedagogy", "0001_initial")]

operations = [
migrations.RunPython(
remove_multiples_comments_from_same_user,
reverse_code=migrations.RunPython.noop,
)
]
# This migration contained just a RunPython operation
# Which has since been removed.
# The migration itself is kept in order not to break the migration tree
operations = []

0 comments on commit 3fcc460

Please sign in to comment.