20 lines
488 B
Python
20 lines
488 B
Python
# Generated by Django 2.2 on 2021-10-24 10:31
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('BaseBillet', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='price',
|
|
name='product',
|
|
field=models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name='prices', to='BaseBillet.Product'),
|
|
),
|
|
]
|