Files
timetracker/games/migrations/0042_purchase_editions_temp.py
Lukáš Kucharczyk c2853a3ecc
All checks were successful
Django CI/CD / test (push) Successful in 1m3s
Django CI/CD / build-and-push (push) Successful in 2m36s
purchases can now refer to multiple editions
allows purchases to be for more than one game
2025-01-08 21:00:19 +01:00

19 lines
488 B
Python

# Generated by Django 5.1.3 on 2025-01-07 20:14
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('games', '0041_purchase_converted_currency_purchase_converted_price_and_more'),
]
operations = [
migrations.AddField(
model_name='purchase',
name='editions_temp',
field=models.ManyToManyField(blank=True, related_name='temp_purchases', to='games.edition'),
),
]