mirror of
https://github.com/ae-utbm/sith.git
synced 2026-05-22 00:40:22 +00:00
dbe29669e6
Savoir quel groupe a le droit d'acheter quel produit est maintenant déterminé avec le modèle `Price`. `Product.buying_groups` avait juste été laissé temporairement pour permettre un rollback si le déploiement des prix ne se passait pas bien. Comme il n'y a pas eu de problème, on peut maintenant le retirer.
12 lines
273 B
Python
12 lines
273 B
Python
# Generated by Django 5.2.13 on 2026-05-13 11:31
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [("counter", "0039_price")]
|
|
|
|
operations = [
|
|
migrations.RemoveField(model_name="product", name="buying_groups"),
|
|
]
|